Skip to content

Commit

Permalink
fixed #107
Browse files Browse the repository at this point in the history
  • Loading branch information
JimLiu committed Apr 18, 2014
1 parent e7d611a commit f4ff171
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "angular-ui-tree",
"version": "2.0.9",
"version": "2.0.10",
"homepage": "https://github.com/JimLiu/angular-ui-tree",
"authors": [
"Jim Liu <https://github.com/JimLiu>",
Expand Down
3 changes: 1 addition & 2 deletions demo/dist/angular-ui-tree.js
@@ -1,5 +1,5 @@
/**
* @license Angular UI Tree v2.0.9
* @license Angular UI Tree v2.0.10
* (c) 2010-2014. https://github.com/JimLiu/angular-ui-tree
* License: MIT
*/
Expand Down Expand Up @@ -1035,7 +1035,6 @@
element.bind('touchstart', dragStartEvent);
element.bind('mousedown', function (e) {
dragTimer = $timeout(function(){dragStartEvent(e);}, scope.dragDelay);
e.preventDefault();
});
element.bind('mouseup',function(){$timeout.cancel(dragTimer);});
};
Expand Down
4 changes: 2 additions & 2 deletions demo/dist/angular-ui-tree.min.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions dist/angular-ui-tree.js
@@ -1,5 +1,5 @@
/**
* @license Angular UI Tree v2.0.9
* @license Angular UI Tree v2.0.10
* (c) 2010-2014. https://github.com/JimLiu/angular-ui-tree
* License: MIT
*/
Expand Down Expand Up @@ -1035,7 +1035,6 @@
element.bind('touchstart', dragStartEvent);
element.bind('mousedown', function (e) {
dragTimer = $timeout(function(){dragStartEvent(e);}, scope.dragDelay);
e.preventDefault();
});
element.bind('mouseup',function(){$timeout.cancel(dragTimer);});
};
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-ui-tree.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "Angular-NestedSortable",
"version": "2.0.9",
"version": "2.0.10",
"dependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
Expand Down
1 change: 0 additions & 1 deletion source/directives/uiTreeNode.js
Expand Up @@ -293,7 +293,6 @@
element.bind('touchstart', dragStartEvent);
element.bind('mousedown', function (e) {
dragTimer = $timeout(function(){dragStartEvent(e);}, scope.dragDelay);
e.preventDefault();
});
element.bind('mouseup',function(){$timeout.cancel(dragTimer);});
};
Expand Down
2 changes: 1 addition & 1 deletion source/main.js
@@ -1,5 +1,5 @@
/**
* @license Angular UI Tree v2.0.9
* @license Angular UI Tree v2.0.10
* (c) 2010-2014. https://github.com/JimLiu/angular-ui-tree
* License: MIT
*/
Expand Down

0 comments on commit f4ff171

Please sign in to comment.