Merge pull request #1052 from kinglozzer/leftandmain-preview-click-bug

BUG: Right click on LeftAndMain menu caused CMS preview pane to open
This commit is contained in:
Ingo Schommer 2013-01-30 05:50:39 -08:00
commit 013f4cfe88

View File

@ -168,7 +168,8 @@ jQuery.noConflict();
* Ensure the user can see the requested section - restore the default view.
*/
'from .cms-menu-list li a': {
onclick: function() {
onclick: function(e) {
if(e.which > 1) return;
this.splitViewMode();
}
},