updated dist

This commit is contained in:
vieron
2012-08-08 20:39:08 +02:00
parent 5f4e6ded39
commit 2c16638905
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -2695,14 +2695,13 @@
((i + 1) * opts.widget_margins[1]) ) + 'px;} ');
}
for (var y = 1; y < max_size_y; y++) {
for (var y = 1; y <= max_size_y; y++) {
styles += (opts.namespace + ' [data-sizey="' + y + '"] { height:' +
(y * opts.widget_base_dimensions[1] +
(y - 1) * (opts.widget_margins[1] * 2)) + 'px;}');
}
for (var x = 1; x < max_size_x; x++) {
for (var x = 1; x <= max_size_x; x++) {
styles += (opts.namespace + ' [data-sizex="' + x + '"] { width:' +
(x * opts.widget_base_dimensions[0] +
(x - 1) * (opts.widget_margins[0] * 2)) + 'px;}');
+1 -1
View File
File diff suppressed because one or more lines are too long