Skip to content

Instantly share code, notes, and snippets.

@edeustace
Created November 30, 2010 14:09
Show Gist options
  • Save edeustace/721724 to your computer and use it in GitHub Desktop.
Save edeustace/721724 to your computer and use it in GitHub Desktop.
<s:RadioButton
width="100%"
label="{resourceManager.getString('application', 'PREF_FITWIDTH')}"
styleName="white"
selected="{controller.user.preferences.defaultDocumentZoom == resourceManager.getString('application', 'PREF_FITWIDTH')}"
group="{defaultDocumentZoom}"/>
to:
private static const PREF_WIDTH = resourceManager.getString('application','PREF_WIDTH');
<s:RadioButton
width="100%"
label="{PREF_WIDTH}"
styleName="white"
selected="{controller.user.preferences.defaultDocumentZoom == PREF_WIDTH}"
group="{defaultDocumentZoom}"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment