Parent Directory
|
Revision Log
CONTRIB-497 * Added flare libbary to repo as it is needed to build the flash front end. Lib is located at /grade/report/visual/flare_visualization/flare/. For more information see http://flare.prefuse.org/ * Added more visualizations. * Added settings/preferences page for the report. * Added printable version. * Added more documentation. * Added README.txt * Cleaned up code. * Fixed a bunch of small bugs.
package
{
import flare.display.TextSprite;
import flash.text.TextFormat;
public class SelectorOption extends TextSprite {
public var param:String;
public var value:String;
public var active:Boolean = false;
public function SelectorOption(param:String, option:XML, active:Boolean = false) {
this.param = param;
this.value = option.value;
this.active = active;
super(option.title, new TextFormat("timesnewromen"));
}
}
}
| Moodle CVS Admin | ViewVC Help |
| Powered by ViewVC 1.0.7 |