Skip to content

Commit 1f505ce

Browse files
authored
Merge pull request #13 from lucasmtav/master
Fix bug stopImmediatePropagation in IE9
2 parents 0838926 + cc183fb commit 1f505ce

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

dist/directive.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* angular-rs-datagrid
33
*
4-
* Version: 1.0.77 - 2018-05-21T17:52:28.365Z
4+
* Version: 1.0.78 - 2018-07-11T19:43:02.819Z
55
* License: MIT
66
*/
77

dist/directive.js

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

dist/directive.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/directive.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-rs-datagrid",
3-
"version": "1.0.77",
3+
"version": "1.0.78",
44
"description": "Angular directive for dataGrid with pagination in back-end and input, input-mask, chosen, combo, checkbox, multiChosen and others",
55
"repository": "[email protected]:lucrod1/angular-rs-datagrid.git",
66
"main": "dist/directive.css, dist/directive.js",

src/directive-template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ <h3 class="popover-title" ng-if="config.popoverRow.titleRender" ng-bind-html="ge
102102
style="margin-left: 5px;" tooltip-placement="top"
103103
ng-if="isVisibleButton(button, row, $index)"
104104
type="button" ng-class="button.classButton"
105-
ng-click="clickButton(button, row)"
105+
ng-click="clickButton($event, button, row)"
106106
ng-repeat="button in buttons track by $index"
107107
ng-disabled="isDisabledButton(button, row, $index)">
108108
<span ng-class="button.classIcon"></span> {{getLabelButton(button, row)}}

src/directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -925,7 +925,7 @@ angular.module('rs.datagrid', ['ui.utils.masks', 'ui.select'])
925925
// CALLBACK CLICK BUTTON
926926
///////////////////////////////////////////////////////////////////////////////////////////////
927927

928-
scope.clickButton = function (button, row) {
928+
scope.clickButton = function (event, button, row) {
929929
event.stopImmediatePropagation();
930930
return button.onClick(row); // button is a reference of memory of the ng-repeat in template
931931
};

0 commit comments

Comments
 (0)