Upgrade to Bootstrap 3
This commit is contained in:
parent
eca8612ed6
commit
840896faf0
@ -460,7 +460,7 @@ define([
|
||||
if(e.target === $menuPanelElt[0]) {
|
||||
isMenuPanelShown = true;
|
||||
menuPanelBackdropElt = utils.createBackdrop('collapse', '.menu-panel');
|
||||
$menuPanelElt.addClass('move-to-front');
|
||||
//$menuPanelElt.addClass('move-to-front');
|
||||
}
|
||||
else {
|
||||
// Close all open sub-menus when one submenu opens
|
||||
@ -470,7 +470,7 @@ define([
|
||||
if(e.target === $menuPanelElt[0]) {
|
||||
isMenuPanelShown = false;
|
||||
menuPanelBackdropElt.remove();
|
||||
$menuPanelElt.removeClass('move-to-front');
|
||||
//$menuPanelElt.removeClass('move-to-front');
|
||||
}
|
||||
}).on('hidden.bs.collapse', function(e) {
|
||||
if(e.target === $menuPanelElt[0]) {
|
||||
@ -487,7 +487,7 @@ define([
|
||||
if(e.target === $documentPanelElt[0]) {
|
||||
isDocumentPanelShown = true;
|
||||
documentPanelBackdropElt = utils.createBackdrop('collapse', '.document-panel');
|
||||
$documentPanelElt.addClass('move-to-front');
|
||||
//$documentPanelElt.addClass('move-to-front');
|
||||
}
|
||||
else {
|
||||
// Close all open sub-menus when one submenu opens
|
||||
@ -497,7 +497,7 @@ define([
|
||||
if(e.target === $documentPanelElt[0]) {
|
||||
isDocumentPanelShown = false;
|
||||
documentPanelBackdropElt.remove();
|
||||
$documentPanelElt.removeClass('move-to-front');
|
||||
//$documentPanelElt.removeClass('move-to-front');
|
||||
}
|
||||
}).on('hidden.bs.collapse', function(e) {
|
||||
if(e.target === $documentPanelElt[0]) {
|
||||
|
@ -317,7 +317,7 @@ body {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
z-index: 10;
|
||||
z-index: 2000;
|
||||
overflow: initial;
|
||||
.box-shadow(0 6px 12px rgba(0,0,0,.175));
|
||||
.collapse-button i {
|
||||
|
@ -181,14 +181,11 @@ define([
|
||||
// Create a backdrop and add to the body
|
||||
utils.createBackdrop = function(toggle, target) {
|
||||
var result = crel('div', {
|
||||
'class': 'modal-backdrop in'
|
||||
'class': 'modal-backdrop in',
|
||||
'data-toggle': toggle,
|
||||
'data-target': target,
|
||||
});
|
||||
document.body.appendChild(result);
|
||||
if(toggle == 'collapse') {
|
||||
$(result).click(function() {
|
||||
$(target).collapse('hide');
|
||||
});
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user