mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
refactor(ionNavBackButton): make click handler use $ionicNgClick service
Closes #802
This commit is contained in:
5
js/ext/angular/src/directive/ionicNavBar.js
vendored
5
js/ext/angular/src/directive/ionicNavBar.js
vendored
@@ -282,7 +282,7 @@ function($ionicViewService, $rootScope, $animate, $compile, $parse) {
|
||||
* </ion-nav-bar>
|
||||
* ```
|
||||
*/
|
||||
.directive('ionNavBackButton', [function() {
|
||||
.directive('ionNavBackButton', ['$ionicNgClick', function($ionicNgClick) {
|
||||
return {
|
||||
restrict: 'E',
|
||||
require: '^ionNavBar',
|
||||
@@ -292,8 +292,9 @@ function($ionicViewService, $rootScope, $animate, $compile, $parse) {
|
||||
'<button class="button back-button" ng-transclude>' +
|
||||
'</button>',
|
||||
link: function($scope, $element, $attr, navBarCtrl) {
|
||||
$scope.$navBack = navBarCtrl.back;
|
||||
if (!$attr.ngClick) {
|
||||
ionic.on('tap', navBarCtrl.back, $element[0]);
|
||||
$ionicNgClick($scope, $element, '$navBack($event)');
|
||||
}
|
||||
|
||||
//If the current viewstate does not allow a back button,
|
||||
|
||||
Reference in New Issue
Block a user