Last active
December 20, 2015 04:09
-
-
Save ecoologic/6068794 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App = Em.Application.create() # use App for every app and Em as a shortcut | |
window.h = # h a hash with all the non oo helpers | |
formatDate: (date) -> | |
date = new Date unless date? | |
[date.getDate(), (date.getMonth() + 1), date.getFullYear(), ].join('/') | |
$ -> | |
$('.datepicker').datepicker() | |
$('.tab').tabs() | |
# all the jquery goodies accessible with a class attribute |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment