diff options
author | 2013-02-24 17:47:51 +0100 | |
---|---|---|
committer | 2013-02-24 17:47:51 +0100 | |
commit | b4fa3cd44d7b6827ca385f60e72d4f7798a3e02f (patch) | |
tree | fbf63ffade6444c19902337320a71f803b1e60ba /module/web/static/js/views/selectionView.js | |
parent | parse category from addons (diff) | |
download | pyload-b4fa3cd44d7b6827ca385f60e72d4f7798a3e02f.tar.xz |
added confirm dialogs
Diffstat (limited to 'module/web/static/js/views/selectionView.js')
-rw-r--r-- | module/web/static/js/views/selectionView.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/module/web/static/js/views/selectionView.js b/module/web/static/js/views/selectionView.js index 8dbd069bd..6d346b6ee 100644 --- a/module/web/static/js/views/selectionView.js +++ b/module/web/static/js/views/selectionView.js @@ -80,7 +80,10 @@ define(['jquery', 'backbone', 'underscore', 'app'], }, pause: function() { - // TODO + _.confirm('default/confirmDialog.html', function() { + alert("Not implemented yet"); + this.deselect(); + }, this); }, trash: function() { |