2012-04-10 14:06:46 +00:00
|
|
|
// This is a manifest file that'll be compiled into including all the files listed below.
|
|
|
|
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
|
|
|
|
// be included in the compiled file accessible from http://example.com/assets/application.js
|
2012-04-10 13:31:21 +00:00
|
|
|
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
|
|
// the compiled file.
|
|
|
|
//
|
2012-04-10 14:06:46 +00:00
|
|
|
|
2013-05-08 18:43:59 +00:00
|
|
|
//= require ./app/lib/core/jquery-1.9.1.min.js
|
2012-11-05 14:37:59 +00:00
|
|
|
//= require ./app/lib/core/jquery-ui-1.8.23.custom.min.js
|
|
|
|
//= require ./app/lib/core/underscore-1.3.3.js
|
|
|
|
|
|
|
|
//not_used= require_tree ./app/lib/spine
|
|
|
|
//= require ./app/lib/spine/spine.js
|
|
|
|
//= require ./app/lib/spine/ajax.js
|
2013-05-31 11:29:48 +00:00
|
|
|
//= require ./app/lib/spine/local.js
|
2012-11-05 14:37:59 +00:00
|
|
|
//= require ./app/lib/spine/route.js
|
|
|
|
|
2012-12-18 02:00:31 +00:00
|
|
|
//= require ./app/lib/flot/jquery.flot.js
|
|
|
|
//= require ./app/lib/flot/jquery.flot.selection.js
|
|
|
|
|
2012-11-05 14:37:59 +00:00
|
|
|
//not_used= require_tree ./app/lib/bootstrap
|
|
|
|
//= require ./app/lib/bootstrap/bootstrap-dropdown.js
|
|
|
|
//= require ./app/lib/bootstrap/bootstrap-tooltip.js
|
|
|
|
//= require ./app/lib/bootstrap/bootstrap-popover.js
|
|
|
|
//= require ./app/lib/bootstrap/bootstrap-modal.js
|
|
|
|
//= require ./app/lib/bootstrap/bootstrap-tab.js
|
|
|
|
//= require ./app/lib/bootstrap/bootstrap-transition.js
|
2012-12-09 13:55:04 +00:00
|
|
|
//= require ./app/lib/bootstrap/bootstrap-button.js
|
2012-12-18 02:00:31 +00:00
|
|
|
//= require ./app/lib/bootstrap/bootstrap-collapse.js
|
2012-11-05 14:37:59 +00:00
|
|
|
|
|
|
|
//= require_tree ./app/lib/base
|
|
|
|
|
|
|
|
//= require ./app/index.js.coffee
|
2012-12-20 09:16:02 +00:00
|
|
|
|
|
|
|
// IE8 workaround for missing console.log
|
|
|
|
if (!window.console) {
|
|
|
|
window.console = {}
|
|
|
|
}
|
|
|
|
if (!console.log) {
|
|
|
|
console.log = function(){}
|
|
|
|
}
|
2013-01-25 09:15:41 +00:00
|
|
|
|
2013-03-07 22:42:37 +00:00
|
|
|
function escapeRegExp(str) {
|
|
|
|
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
|
|
|
|
}
|
2013-01-25 09:15:41 +00:00
|
|
|
|
|
|
|
Date.prototype.getWeek = function() {
|
|
|
|
var onejan = new Date(this.getFullYear(),0,1);
|
|
|
|
return Math.ceil((((this - onejan) / 86400000) + onejan.getDay()+1)/7);
|
2013-03-08 07:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function difference(object1, object2) {
|
|
|
|
var changes = {};
|
|
|
|
for ( var name in object1 ) {
|
|
|
|
if ( name in object2 ) {
|
|
|
|
if ( _.isObject( object2[name] ) && !_.isArray( object2[name] ) ) {
|
|
|
|
var diff = difference( object1[name], object2[name] );
|
|
|
|
if ( !_.isEmpty( diff ) ) {
|
|
|
|
changes[name] = diff;
|
|
|
|
}
|
|
|
|
} else if ( !_.isEqual( object1[name], object2[name] ) ) {
|
|
|
|
changes[name] = object2[name];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return changes;
|
2013-01-25 09:15:41 +00:00
|
|
|
}
|