diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-11-25 09:05:16 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-11-25 09:05:16 +0100 |
commit | acc900cb633712deabf66afe26544f7c34c145b2 (patch) | |
tree | 88b849a6435fa41c64c49ed417b9e0725f1aa885 | |
parent | 75a5c3554a8a4d7f88c4abecb155566c74c30afc (diff) |
Small code improvement
-rw-r--r-- | program/js/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js index 6f54dd77c..e3a38ba7f 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -1565,7 +1565,7 @@ add_dragfix: function() */ del_dragfix: function() { - $('div.iframe-dragdrop-fix').each(function() { this.parentNode.removeChild(this); }); + $('div.iframe-dragdrop-fix').remove(); }, |