updated dist

This commit is contained in:
vieron
2012-10-20 00:14:14 +02:00
parent a20f3d53b5
commit c75db76f4e
5 changed files with 17 additions and 7 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
/*! gridster.js - v0.1.0 - 2012-10-15
/*! gridster.js - v0.1.0 - 2012-10-20
* http://gridster.net/
* Copyright (c) 2012 ducksboard; Licensed MIT */
+7 -2
View File
@@ -1,4 +1,4 @@
/*! gridster.js - v0.1.0 - 2012-10-15
/*! gridster.js - v0.1.0 - 2012-10-20
* http://gridster.net/
* Copyright (c) 2012 ducksboard; Licensed MIT */
@@ -366,7 +366,8 @@
limit: true,
offset_left: 0,
autoscroll: true,
ignore_dragging: ['INPUT', 'TEXTAREA', 'SELECT', 'BUTTON']
ignore_dragging: ['INPUT', 'TEXTAREA', 'SELECT', 'BUTTON'],
handle: null
// ,drag: function(e){},
// start : function(e, ui){},
// stop : function(e){}
@@ -681,6 +682,10 @@
};
fn.ignore_drag = function(event) {
if (this.options.handle) {
return !$(event.target).is(this.options.handle);
}
return $.inArray(event.target.nodeName, this.options.ignore_dragging) >= 0;
};
+1 -1
View File
File diff suppressed because one or more lines are too long
+7 -2
View File
@@ -1,4 +1,4 @@
/*! gridster.js - v0.1.0 - 2012-10-15
/*! gridster.js - v0.1.0 - 2012-10-20
* http://gridster.net/
* Copyright (c) 2012 ducksboard; Licensed MIT */
@@ -366,7 +366,8 @@
limit: true,
offset_left: 0,
autoscroll: true,
ignore_dragging: ['INPUT', 'TEXTAREA', 'SELECT', 'BUTTON']
ignore_dragging: ['INPUT', 'TEXTAREA', 'SELECT', 'BUTTON'],
handle: null
// ,drag: function(e){},
// start : function(e, ui){},
// stop : function(e){}
@@ -681,6 +682,10 @@
};
fn.ignore_drag = function(event) {
if (this.options.handle) {
return !$(event.target).is(this.options.handle);
}
return $.inArray(event.target.nodeName, this.options.ignore_dragging) >= 0;
};
File diff suppressed because one or more lines are too long