Skip to content

Commit

Permalink
N.grid : Fixed a bug that onBind event is called twice.
Browse files Browse the repository at this point in the history
  • Loading branch information
81801210 authored and 81801210 committed Feb 20, 2019
1 parent 1d24ee9 commit 3e8340a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions dist/natural.js.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/natural.js.min.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/natural.ui.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions src/natural.ui.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* Natural-UI v0.37.156
* Natural-UI v0.37.157
*
* Released under the LGPL v2.1 license
* Date: 2014-09-26T11:11Z
*
* Copyright 2014 KIM HWANG MAN(bbalganjjm@gmail.com)
*/
(function(window, $) {
N.version["Natural-UI"] = "0.37.156";
N.version["Natural-UI"] = "0.37.157";

$.fn.extend($.extend(N.prototype, {
alert : function(msg, vars) {
Expand Down Expand Up @@ -6223,11 +6223,11 @@
emptyCellEle.parent("tr").css("height", emptyCellEle.outerHeight());
}, 0);
}

if(opts.onBind !== null && callType !== "grid.update") {
opts.onBind.call(this, opts.context, opts.data, true, true);
}
}

if(opts.onBind !== null && callType !== "grid.update") {
opts.onBind.call(this, opts.context, opts.data, true, true);
}
} else {
var self = this;
var args = arguments;
Expand Down

0 comments on commit 3e8340a

Please sign in to comment.