comparison static/js/wikked.js @ 89:b03f083c3a29

Lots of HTML/JS/Less changes: - more semantic and simple markup, no useless grid. - simpler colour schemes (TODO: colours are ugly, tune them). - better error handling in Backbone views. - fixed some view bugs. - changed new/modified page alert to a ribbon with tooltip.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 06 Apr 2013 18:07:31 -0700
parents d5caf4030999
children 13249e5ca51c
comparison
equal deleted inserted replaced
88:a5a3d454eac9 89:b03f083c3a29
10 underscore: 'js/underscore-min', 10 underscore: 'js/underscore-min',
11 backbone: 'js/backbone-min', 11 backbone: 'js/backbone-min',
12 handlebars: 'js/handlebars-1.0.rc.1', 12 handlebars: 'js/handlebars-1.0.rc.1',
13 moment: 'js/moment.min', 13 moment: 'js/moment.min',
14 text: 'js/text', 14 text: 'js/text',
15 bootstrap_modal: '/bootstrap/js/bootstrap-modal' 15 bootstrap_modal: '/bootstrap/js/bootstrap-modal',
16 bootstrap_tooltip: '/bootstrap/js/bootstrap-tooltip'
16 }, 17 },
17 shim: { 18 shim: {
18 'jquery': { 19 'jquery': {
19 exports: '$' 20 exports: '$'
20 }, 21 },
27 }, 28 },
28 'handlebars': { 29 'handlebars': {
29 exports: 'Handlebars' 30 exports: 'Handlebars'
30 }, 31 },
31 'bootstrap_modal': { 32 'bootstrap_modal': {
33 deps: ['jquery']
34 },
35 'bootstrap_tooltip': {
32 deps: ['jquery'] 36 deps: ['jquery']
33 } 37 }
34 } 38 }
35 }); 39 });
36 40