fixed menu loading

This commit is contained in:
NyanLinHtut
2020-03-04 11:58:21 +06:30
parent 052be7f028
commit 82ab2c7ef0
4 changed files with 31 additions and 27 deletions

View File

@@ -44,7 +44,7 @@ $.AdminBSB.options = {
/* Left Sidebar - Function =================================================================================================
* You can manage the left sidebar menu options
*
*
*/
$.AdminBSB.leftSideBar = {
activate: function () {
@@ -157,7 +157,7 @@ $.AdminBSB.leftSideBar = {
/* Right Sidebar - Function ================================================================================================
* You can manage the right sidebar menu options
*
*
*/
$.AdminBSB.rightSideBar = {
activate: function () {
@@ -189,7 +189,7 @@ $.AdminBSB.rightSideBar = {
/* Searchbar - Function ================================================================================================
* You can manage the search bar
*
*
*/
var $searchBar = $('.search-bar');
$.AdminBSB.search = {
@@ -226,7 +226,7 @@ $.AdminBSB.search = {
/* Navbar - Function =======================================================================================================
* You can manage the navbar
*
*
*/
$.AdminBSB.navbar = {
activate: function () {
@@ -256,7 +256,7 @@ $.AdminBSB.navbar = {
/* Input - Function ========================================================================================================
* You can manage the inputs(also textareas) with name of class 'form-control'
*
*
*/
$.AdminBSB.input = {
activate: function () {
@@ -293,7 +293,7 @@ $.AdminBSB.input = {
/* Form - Select - Function ================================================================================================
* You can manage the 'select' of form elements
*
*
*/
$.AdminBSB.select = {
activate: function () {
@@ -304,7 +304,7 @@ $.AdminBSB.select = {
/* DropdownMenu - Function =================================================================================================
* You can manage the dropdown menu
*
*
*/
$.AdminBSB.dropdownMenu = {
@@ -382,7 +382,7 @@ $.AdminBSB.dropdownMenu = {
/* Browser - Function ======================================================================================================
* You can manage browser
*
*
*/
var edge = 'Microsoft Edge';
var ie10 = 'Internet Explorer 10';
@@ -455,4 +455,4 @@ $(document).on('turbolinks:load', function() {
$.AdminBSB.search.activate();
setTimeout(function () { $('.page-loader-wrapper').fadeOut(); }, 50);
});
});