Skip to content

Commit 6809c4f

Browse files
committed
Build distribution
1 parent fe5df4e commit 6809c4f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dist/ngCart.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ angular.module('ngCart.directives', [])
1010

1111
}])
1212

13-
.directive('addtocart', ['ngCart', function(ngCart){
13+
.directive('ngcartAddtocart', ['ngCart', function(ngCart){
1414
return {
1515
restrict : 'E',
1616
controller : 'CartController',
@@ -32,7 +32,7 @@ angular.module('ngCart.directives', [])
3232
};
3333
}])
3434

35-
.directive('cart', ['ngCart', function(ngCart){
35+
.directive('ngcartCart', ['ngCart', function(ngCart){
3636
return {
3737
restrict : 'E',
3838
controller : 'CartController',
@@ -44,15 +44,15 @@ angular.module('ngCart.directives', [])
4444
};
4545
}])
4646

47-
.directive('summary', ['ngCart', function(ngCart){
47+
.directive('ngcartSummary', ['ngCart', function(ngCart){
4848
return {
4949
restrict : 'E',
5050
controller : 'CartController',
5151
scope: {},
5252
transclude: true,
5353
templateUrl: 'template/ngCart/summary.html'
5454
};
55-
}])
55+
}]);
5656

5757
;'use strict';
5858

dist/ngCart.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)