8 lines
173 B
CoffeeScript
8 lines
173 B
CoffeeScript
root = if typeof window isnt 'undefined' then window else global
|
|
|
|
root.roundDecimal = (value) ->
|
|
return Math.round(value * 100) / 100
|
|
|
|
$ ->
|
|
console.log('DOM is ready.')
|