document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <template name=\'afCheckbox_circle\'>
  2.     {{> xboolean name=this.name value=this.value}}
  3. </template>
  4.  
  5.  
  6. <template name="xboolean">
  7.   <div>
  8.     {{setInitial this.name this.value}}
  9.     <svg height="10" width="10" name={{this.name}} data-schema-key={{this.name}}>
  10.         <circle name={{this.name}} cx="5" cy="5" r="5" fill="{{getColor this.name}}" />
  11.     </svg>
  12.   </div>
  13. </template>
');