chore(gulp): fix strip-debug task

This commit is contained in:
Andy Joslin
2014-03-15 11:10:15 -06:00
parent b1ba0bf1dd
commit bef0cfe7fd
3 changed files with 3 additions and 3 deletions

View File

@@ -125,7 +125,7 @@ gulp.task('scripts', function() {
gulp.task('scripts-ng', function() {
return gulp.src(buildConfig.angularIonicFiles)
.pipe(gulpif(IS_RELEASE_BUILD, stripDebug()))
// .pipe(gulpif(IS_RELEASE_BUILD, stripDebug()))
.pipe(concat('ionic-angular.js'))
.pipe(header(banner))
.pipe(gulp.dest(buildConfig.distJs))

View File

@@ -1,3 +1,4 @@
(function() {
angular.module('ionic.ui.navAnimation', [])
/**
* @ngdoc directive
@@ -39,3 +40,4 @@ angular.module('ionic.ui.navAnimation', [])
}
};
});
})();

View File

@@ -101,7 +101,6 @@ angular.module('ionic.ui.radio', [])
if(!ngModel || !radioButtons) { return; }
var setIt = function() {
console.log('SET');
$element.addClass('active');
ngModel.$setViewValue($scope.$eval($attr.ngValue));
@@ -109,7 +108,6 @@ angular.module('ionic.ui.radio', [])
};
var clickHandler = function(e) {
console.log('CLICK');
setIt();
};