document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Template.swBasicPerecentege.helpers
  2.     getWidth: (value) ->
  3.         w = this.width
  4.         w*value/100
  5.     getColor: (value) ->
  6.         if value >= 50
  7.             \'red\'
  8.         else
  9.             \'green\'
  10.     xPosText: ->
  11.         this.width/2
');