create minified JS and CSS in dist folder

This commit is contained in:
Ulrich Sossou
2013-11-24 17:18:36 +01:00
parent 510c2db303
commit 5a5dfec0d2
15 changed files with 169 additions and 23 deletions

View File

@@ -3,7 +3,7 @@
angular.module('ionic.ui.actionSheet', [])
.directive('actionSheet', function($document) {
.directive('actionSheet', ['$document', function($document) {
return {
restrict: 'E',
scope: true,
@@ -46,6 +46,6 @@ angular.module('ionic.ui.actionSheet', [])
'</div>' +
'</div>'
};
});
}]);
})();