updated dist

This commit is contained in:
vieron
2012-07-26 10:00:00 +02:00
parent 341e1bbd4c
commit cf4e876a84
6 changed files with 20 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
/*! gridster.js - v0.1.0 - 2012-07-25
/*! gridster.js - v0.1.0 - 2012-07-26
* 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-25
/*! gridster.js - v0.1.0 - 2012-07-26
* https://github.com/ducksboard/gridster.js
* Copyright (c) 2012 ducksboard; Licensed MIT, GPL */
@@ -2807,10 +2807,14 @@
var actual_cols = this.$widgets.map(function() {
return $(this).attr('data-col');
});
//needed to pass tests with phantomjs
actual_cols.length || (actual_cols = [0]);
var actual_rows = this.$widgets.map(function() {
return $(this).attr('data-row');
});
//needed to pass tests with phantomjs
actual_rows.length || (actual_rows = [0]);
var min_cols = Math.max.apply(Math, actual_cols);
var min_rows = Math.max.apply(Math, actual_rows);

View File

@@ -1,3 +1,3 @@
/*! gridster.js - v0.1.0 - 2012-07-25
/*! gridster.js - v0.1.0 - 2012-07-26
* 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