Skip to content

Commit

Permalink
chore(gulp): fix strip-debug task
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoslin committed Mar 15, 2014
1 parent b1ba0bf commit bef0cfe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 2 additions & 0 deletions js/ext/angular/src/directive/ionicNavAnimation.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
(function() {
angular.module('ionic.ui.navAnimation', [])
/**
* @ngdoc directive
Expand Down Expand Up @@ -39,3 +40,4 @@ angular.module('ionic.ui.navAnimation', [])
}
};
});
})();
2 changes: 0 additions & 2 deletions js/ext/angular/src/directive/ionicRadio.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,13 @@ angular.module('ionic.ui.radio', [])
if(!ngModel || !radioButtons) { return; }

var setIt = function() {
console.log('SET');
$element.addClass('active');
ngModel.$setViewValue($scope.$eval($attr.ngValue));

radioButtons.select($element);
};

var clickHandler = function(e) {
console.log('CLICK');
setIt();
};

Expand Down

0 comments on commit bef0cfe

Please sign in to comment.