diff --git a/dist/js/ionic-angular.js b/dist/js/ionic-angular.js
index 6c2961d1004..12193a16e80 100644
--- a/dist/js/ionic-angular.js
+++ b/dist/js/ionic-angular.js
@@ -503,12 +503,12 @@ angular.module('ionic.ui.header', ['ngAnimate'])
transclude: true,
template: '',
@@ -1219,11 +1219,11 @@ angular.module('ionic.ui.navRouter', ['ionic.service.gesture'])
template: '',
link: function($scope, $element, $attr, navCtrl) {
diff --git a/js/ext/angular/src/directive/ionicBar.js b/js/ext/angular/src/directive/ionicBar.js
index 16baec61f7c..928561976c3 100644
--- a/js/ext/angular/src/directive/ionicBar.js
+++ b/js/ext/angular/src/directive/ionicBar.js
@@ -11,12 +11,12 @@ angular.module('ionic.ui.header', ['ngAnimate'])
transclude: true,
template: '',
diff --git a/js/ext/angular/src/directive/ionicNavRouter.js b/js/ext/angular/src/directive/ionicNavRouter.js
index e28da6622b6..1cb7dd61f80 100644
--- a/js/ext/angular/src/directive/ionicNavRouter.js
+++ b/js/ext/angular/src/directive/ionicNavRouter.js
@@ -191,11 +191,11 @@ angular.module('ionic.ui.navRouter', ['ionic.service.gesture'])
template: '',
link: function($scope, $element, $attr, navCtrl) {
diff --git a/js/ext/angular/test/header.html b/js/ext/angular/test/header.html
index defed036565..bf3ad328a8a 100644
--- a/js/ext/angular/test/header.html
+++ b/js/ext/angular/test/header.html
@@ -32,7 +32,7 @@
$scope.leftButtons = [
{
content: 'Hello',
- click: function(e) {
+ tap: function(e) {
console.log('Click button');
}
}
@@ -40,7 +40,7 @@
$scope.rightButtons = [
{
content: 'Hello',
- click: function(e) {
+ tap: function(e) {
console.log('Click button');
}
}
diff --git a/js/ext/angular/test/navAndTabs.html b/js/ext/angular/test/navAndTabs.html
index 45ef7d06e55..a29a988e330 100644
--- a/js/ext/angular/test/navAndTabs.html
+++ b/js/ext/angular/test/navAndTabs.html
@@ -139,7 +139,7 @@
Page 3
.controller('AdoptCtrl', function($scope) {
$scope.buttons = [
{
- text: 'Adopt',
+ content: 'Adopt',
tap: function(e) {
console.log('ADOPT TAPPED');
},
diff --git a/js/ext/angular/test/navRouter.html b/js/ext/angular/test/navRouter.html
index 9fc05c3c3d6..e46f33331f9 100644
--- a/js/ext/angular/test/navRouter.html
+++ b/js/ext/angular/test/navRouter.html
@@ -79,8 +79,8 @@ Page 3
$scope.rightButtons = [
{
- text: 'Hello',
- click: function(e) {
+ content: 'Hello',
+ tap: function(e) {
console.log('Click button');
}
}