diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-05-13 22:56:51 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-05-13 22:56:51 +0000 |
commit | daebdab0c6a96b8fabc12b5bbbb438a134e4226d (patch) | |
tree | d62c19610aa0dbeef6f9d2f1e8fdaa28d264d88d /core/js/quick.js | |
parent | baa220186e176191e34383b5871746cefe6e5c8e (diff) |
Address the final point in #226. Disable the make album cover icon if
the pane has the ui-state-disabled class
Diffstat (limited to 'core/js/quick.js')
-rw-r--r-- | core/js/quick.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/js/quick.js b/core/js/quick.js index 984d3ae5..750bdd40 100644 --- a/core/js/quick.js +++ b/core/js/quick.js @@ -50,6 +50,9 @@ var show_quick = function() { }; var quick_do = function(cont, pane, img) { + if (pane.hasClass("ui-state-disabled")) { + return false; + } if (pane.hasClass("gDialogLink")) { openDialog(pane, function() { window.location.reload(); }); } else { |