Skip to content

Commit

Permalink
bower rename
Browse files Browse the repository at this point in the history
  • Loading branch information
fatlinesofcode committed Mar 12, 2015
1 parent e4f6a21 commit 2a17a40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ngDraggable",
"name": "ngdraggable",
"main": "ngDraggable.js",
"version": "0.0.4.1",
"version": "0.1.0",
"homepage": "https://github.com/fatlinesofcode/ngDraggable",
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion ngDraggable.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
angular.module("ngDraggable", [])
.service('ngDraggable', [function() {


var scope = this;
scope.inputEvent = function(event) {
return angular.isDefined(event.touches) ? event.touches[0] : event;
Expand Down

2 comments on commit 2a17a40

@zhuangya
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

breaking change :(

@fatlinesofcode
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bower no longer let you register packages with CamelCase

Please sign in to comment.