generated dist

This commit is contained in:
vieron
2012-07-25 17:59:01 +02:00
parent e4e06f4cde
commit c6e77dc661
4 changed files with 10 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
/*! gridster.js - v0.1.0 - 2012-07-24
/*! gridster.js - v0.1.0 - 2012-07-25
* https://github.com/ducksboard/gridster.js
* Copyright (c) 2012 ducksboard; Licensed MIT, GPL */

View File

@@ -1,4 +1,4 @@
/*! gridster.js - v0.1.0 - 2012-07-24
/*! gridster.js - v0.1.0 - 2012-07-25
* https://github.com/ducksboard/gridster.js
* Copyright (c) 2012 ducksboard; Licensed MIT, GPL */
@@ -892,7 +892,7 @@
}, this));
if (callback) {
callback.apply(this, el);
callback.call(this, el);
}
}, this));
};
@@ -2214,7 +2214,7 @@
diffs.push(temp_y_units);
});
var max_diff = Math.max.apply(null, diffs);
var max_diff = Math.max.apply(Math, diffs);
y_units = (y_units - max_diff);
return y_units > 0 ? y_units : 0;
@@ -2571,7 +2571,7 @@
}
}
var highest_row = Math.max.apply(null, rows);
var highest_row = Math.max.apply(Math, rows);
this.highest_occupied_cell = {
col: row_in_col[highest_row],
@@ -2812,8 +2812,8 @@
return $(this).attr('data-row');
});
var min_cols = Math.max.apply(null, actual_cols);
var min_rows = Math.max.apply(null, actual_rows);
var min_cols = Math.max.apply(Math, actual_cols);
var min_rows = Math.max.apply(Math, actual_rows);
this.cols = Math.max(min_cols, cols, this.options.min_cols);
this.rows = Math.max(min_rows, rows, this.options.min_rows);

View File

@@ -1,3 +1,3 @@
/*! gridster.js - v0.1.0 - 2012-07-24
/*! gridster.js - v0.1.0 - 2012-07-25
* https://github.com/ducksboard/gridster.js
* Copyright (c) 2012 ducksboard; Licensed MIT, GPL */.gridster{position:relative}.gridster>*{margin:0 auto;-webkit-transition:height .4s;-moz-transition:height .4s;-o-transition:height .4s;-ms-transition:height .4s;transition:height .4s}.gridster .gs_w{z-index:2;position:absolute}.ready .gs_w:not(.preview-holder){-webkit-transition:opacity .3s,left .3s,top .3s;-moz-transition:opacity .3s,left .3s,top .3s;-o-transition:opacity .3s,left .3s,top .3s;transition:opacity .3s,left .3s,top .3s}.gridster .preview-holder{z-index:1;position:absolute;background-color:#fff;border-color:#fff;opacity:.3}.gridster .player-revert{z-index:10!important;-webkit-transition:left .3s,top .3s!important;-moz-transition:left .3s,top .3s!important;-o-transition:left .3s,top .3s!important;transition:left .3s,top .3s!important}.gridster .dragging{z-index:10!important;-webkit-transition:all 0s!important;-moz-transition:all 0s!important;-o-transition:all 0s!important;transition:all 0s!important}

File diff suppressed because one or more lines are too long