diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-01-05 23:55:21 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-01-05 23:55:21 -0800 |
commit | 9e6e2138dfd507dbd0ce8835072b7d950855b3d4 (patch) | |
tree | 002c68dffab38927b73faa27390622d9ce936364 /modules/organize/views | |
parent | 33b8ec7a6264f91db2639944bc10005c2709f0e3 (diff) |
Only mask the data view on changes, it's a little less jarring.
Diffstat (limited to 'modules/organize/views')
-rw-r--r-- | modules/organize/views/organize_frame.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/organize/views/organize_frame.html.php b/modules/organize/views/organize_frame.html.php index 626a1b7d..958b7414 100644 --- a/modules/organize/views/organize_frame.html.php +++ b/modules/organize/views/organize_frame.html.php @@ -21,11 +21,11 @@ * ******************************************************************************** */ var start_busy = function(msg) { - outer.el.mask(msg, "loading"); + thumb_data_view.el.mask(msg, "loading"); } var stop_busy = function() { - outer.el.unmask(); + thumb_data_view.el.unmask(); } var show_generic_error = function() { |