first commit
This commit is contained in:
44
modules/appagebuilder/views/js/admin/function.js
Normal file
44
modules/appagebuilder/views/js/admin/function.js
Normal file
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* @Website: apollotheme.com - prestashop template provider
|
||||
* @author Apollotheme <apollotheme@gmail.com>
|
||||
* @copyright Apollotheme
|
||||
* @description:
|
||||
*/
|
||||
|
||||
function SetButonSaveToHeader() {
|
||||
var html_save_and_stay =
|
||||
'<li>' +
|
||||
'<a id="page-header-desc-appagebuilder_shortcode-SaveAndStay" class="toolbar_btn pointer" href="javascript:void(0);" title="Save and stay" onclick="TopSaveAndStay()">' +
|
||||
'<i class="process-icon-save"></i>' +
|
||||
'<div>Save and stay</div>' +
|
||||
'</a>' +
|
||||
'</li>';
|
||||
$('.toolbarBox .btn-toolbar ul').prepend(html_save_and_stay);
|
||||
|
||||
}
|
||||
|
||||
function TopSave(){
|
||||
if (typeof TopSave_Name !== 'undefined') {
|
||||
$("button[name$='"+TopSave_Name+"']").click();
|
||||
}
|
||||
}
|
||||
|
||||
function TopSaveAndStay(){
|
||||
if (typeof TopSaveAndStay_Name !== 'undefined') {
|
||||
$("button[name$='"+TopSaveAndStay_Name+"']").click();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* review $('.nav-bar').on('click', '.menu-collapse', function() {
|
||||
*/
|
||||
function miniLeftMenu(parameters) {
|
||||
if( !$('body').hasClass('page-sidebar-closed')){
|
||||
$('body').toggleClass('page-sidebar-closed');
|
||||
if ($('body').hasClass('page-sidebar-closed')) {
|
||||
$('nav.nav-bar ul.main-menu > li')
|
||||
.removeClass('ul-open open')
|
||||
.find('a > i.material-icons.sub-tabs-arrow').text('keyboard_arrow_down');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user