]> asedeno.scripts.mit.edu Git - bluechips.git/blob - bluechips/public/js/admin.js
Added UI for working with tags
[bluechips.git] / bluechips / public / js / admin.js
1 try {
2     console.log("init");
3 } catch(e) {
4     console = { log: function() {} };
5 }
6
7 $(function() {
8     console.log("ready()");
9    
10     /* Attach datepickers to fields! */
11     $('input.datepicker').datepicker({
12         changeMonth: true,
13         changeYear: true,
14         duration: '',
15         showButtonPanel: true,
16     });
17
18     console.log("ready() done");
19 });
20