Commit 8d3cdde16a3713dd1b0fdf58ee1b96affec15b88

Authored by Igor Kulikov
Committed by GitHub
2 parents a532ded5 26123b40

Merge pull request #2899 from yefimov-andrey/alarm-widget-fix

fixing the activation of on-row event on details click
@@ -404,6 +404,9 @@ function AlarmsTableWidgetController($element, $scope, $filter, $mdMedia, $mdDia @@ -404,6 +404,9 @@ function AlarmsTableWidgetController($element, $scope, $filter, $mdMedia, $mdDia
404 } 404 }
405 405
406 function openAlarmDetails($event, alarm) { 406 function openAlarmDetails($event, alarm) {
  407 + if ($event) {
  408 + $event.stopPropagation();
  409 + }
407 if (alarm && alarm.id) { 410 if (alarm && alarm.id) {
408 var onShowingCallback = { 411 var onShowingCallback = {
409 onShowing: function(){} 412 onShowing: function(){}