Primer Primer Commit
This commit is contained in:
63
js/dlabnav-init.js
Normal file
63
js/dlabnav-init.js
Normal file
@@ -0,0 +1,63 @@
|
||||
|
||||
"use strict"
|
||||
|
||||
var dlabSettingsOptions = {};
|
||||
|
||||
function getUrlParams(dParam)
|
||||
{
|
||||
var dPageURL = window.location.search.substring(1),
|
||||
dURLVariables = dPageURL.split('&'),
|
||||
dParameterName,
|
||||
i;
|
||||
|
||||
for (i = 0; i < dURLVariables.length; i++) {
|
||||
dParameterName = dURLVariables[i].split('=');
|
||||
|
||||
if (dParameterName[0] === dParam) {
|
||||
return dParameterName[1] === undefined ? true : decodeURIComponent(dParameterName[1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
(function($) {
|
||||
|
||||
"use strict"
|
||||
|
||||
/* var direction = getUrlParams('dir');
|
||||
|
||||
if(direction == 'rtl')
|
||||
{
|
||||
direction = 'rtl';
|
||||
}else{
|
||||
direction = 'ltr';
|
||||
} */
|
||||
|
||||
dlabSettingsOptions = {
|
||||
typography: "poppins",
|
||||
version: "light",
|
||||
layout: "vertical",
|
||||
primary: "color_1",
|
||||
headerBg: "color_1",
|
||||
navheaderBg: "color_1",
|
||||
sidebarBg: "color_1",
|
||||
sidebarStyle: "full",
|
||||
sidebarPosition: "fixed",
|
||||
headerPosition: "fixed",
|
||||
containerLayout: "full",
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
new dlabSettings(dlabSettingsOptions);
|
||||
|
||||
jQuery(window).on('resize',function(){
|
||||
/*Check container layout on resize */
|
||||
///alert(dlabSettingsOptions.primary);
|
||||
dlabSettingsOptions.containerLayout = $('#container_layout').val();
|
||||
/*Check container layout on resize END */
|
||||
|
||||
new dlabSettings(dlabSettingsOptions);
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user