Skip to content

Commit

Permalink
Build distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
snapjay committed Dec 4, 2014
1 parent fe5df4e commit 6809c4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions dist/ngCart.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ angular.module('ngCart.directives', [])

}])

.directive('addtocart', ['ngCart', function(ngCart){
.directive('ngcartAddtocart', ['ngCart', function(ngCart){
return {
restrict : 'E',
controller : 'CartController',
Expand All @@ -32,7 +32,7 @@ angular.module('ngCart.directives', [])
};
}])

.directive('cart', ['ngCart', function(ngCart){
.directive('ngcartCart', ['ngCart', function(ngCart){
return {
restrict : 'E',
controller : 'CartController',
Expand All @@ -44,15 +44,15 @@ angular.module('ngCart.directives', [])
};
}])

.directive('summary', ['ngCart', function(ngCart){
.directive('ngcartSummary', ['ngCart', function(ngCart){
return {
restrict : 'E',
controller : 'CartController',
scope: {},
transclude: true,
templateUrl: 'template/ngCart/summary.html'
};
}])
}]);

;'use strict';

Expand Down
2 changes: 1 addition & 1 deletion dist/ngCart.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6809c4f

Please sign in to comment.