Skip to content

Commit

Permalink
BUG Fixes an issue where batch actions dropdown doesn't show up after…
Browse files Browse the repository at this point in the history
… ajax request back to the cms Pages section
  • Loading branch information
phalkunz committed Sep 3, 2012
1 parent 540f238 commit a0462b9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion admin/javascript/LeftAndMain.js
Expand Up @@ -33,7 +33,11 @@ jQuery.noConflict();
el.siblings('.chzn-container').prop('title', title);
}
} else {
setTimeout(function() { applyChosen(el); }, 500);
setTimeout(function() {
// Make sure it's visible before applying the ui
el.show();
applyChosen(el); },
500);
}
};

Expand Down

0 comments on commit a0462b9

Please sign in to comment.