Sha256: 0cf2daca3eb8949da66be8bd604fc4dd7ae8aed823d96ec8bb384ac76130387b
Contents?: true
Size: 993 Bytes
Versions: 5
Compression:
Stored size: 993 Bytes
Contents
<?xml version="1.0" encoding="utf-8"?> <mx:ControlBar xmlns:mx="http://www.adobe.com/2006/mxml" width="100%"> <mx:Script> <![CDATA[ import org.rsos.openbill.model.OpenbillModelLocator; [Bindable] private var model : OpenbillModelLocator = OpenbillModelLocator.getInstance(); private function openterms():void { navigateToURL(new URLRequest(model.userVO.setting.setting_terms)); } private function openprivacy():void { navigateToURL(new URLRequest(model.userVO.setting.setting_privacy)); } ]]> </mx:Script> <mx:DropShadowFilter id="dropShadow" distance="1" angle="45" blurX="0" blurY="0" alpha="1" color="0x111111" /> <mx:Label filters="{[dropShadow]}" text="{model.userVO.setting.setting_copyright}" fontWeight="bold"/> <mx:Spacer width="100%"/> <mx:LinkButton filters="{[dropShadow]}" label="Terms" click="openterms()"/> <mx:LinkButton filters="{[dropShadow]}" label="Privacy" click="openprivacy()"/> </mx:ControlBar>
Version data entries
5 entries across 5 versions & 2 rubygems