每次点击按钮时,我都会使用此example来创建通知。
该示例在模拟器上运行良好,但在手机上它会被触发两次! 这是控制器
angular.module('starter.toolsController', ['ui-notification'])
.controller('toolsController', function($scope, Notification) {
$scope.BottomCenter1 = function() {
Notification.warning({message: 'Messenger d entreprise', positionY: 'bottom', positionX: 'center'});
};
和按钮:
<button class="box1" ng-click="BottomCenter2()"> MyRhoom </button>
我做错了什么?