updated dist

This commit is contained in:
vieron
2012-07-30 21:20:44 +02:00
parent 4048784eaf
commit c03a11eed8
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -2809,12 +2809,14 @@
var actual_cols = this.$widgets.map(function() {
return $(this).attr('data-col');
});
actual_cols = Array.prototype.slice.call(actual_cols, 0);
//needed to pass tests with phantomjs
actual_cols.length || (actual_cols = [0]);
var actual_rows = this.$widgets.map(function() {
return $(this).attr('data-row');
});
actual_rows = Array.prototype.slice.call(actual_rows, 0);
//needed to pass tests with phantomjs
actual_rows.length || (actual_rows = [0]);
+1 -1
View File
File diff suppressed because one or more lines are too long