Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI: fix the cancel button (edit/add), fixes #3379
  • Loading branch information
perexg committed Dec 4, 2015
1 parent 605fd6b commit 888b4f5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/webui/static/app/idnode.js
Expand Up @@ -1695,12 +1695,11 @@ tvheadend.idnode_grid = function(panel, conf)
params: params,
success: function(d) {
d = json_decode(d);
var w = null;
var c = {
win: w,
cancel: function() {
w.close();
w = null;
win: null,
cancel: function(conf) {
conf.win.close();
conf.win = null;
}
};
if (uuids.length > 1) {
Expand Down

0 comments on commit 888b4f5

Please sign in to comment.