@ninjamsp/ninja-inspinia
Advanced tools
Comparing version 1.0.11 to 1.0.12
274
bundle.js
@@ -1,273 +0,1 @@ | ||
/* | ||
* | ||
* INSPINIA - Responsive Admin Theme | ||
* version 2.6 | ||
* | ||
*/ | ||
function loadInspinia() { | ||
/*// Add body-small class if window less than 768px | ||
if ($(this).width() < 769) { | ||
$('body').addClass('body-small') | ||
} else { | ||
$('body').removeClass('body-small') | ||
}*/ | ||
// Collapse sidebar if screen is under 1250px | ||
if ($('body').width() < 1250) { | ||
$('body').addClass('mini-navbar'); | ||
} else { | ||
$('body').removeClass('mini-navbar'); | ||
} | ||
// MetsiMenu | ||
$('#side-menu').metisMenu({ | ||
toggle: false, | ||
activeClass: 'activeMenu' | ||
}); | ||
// Collapse ibox function | ||
$('.collapse-link').on('click', function () { | ||
var ibox = $(this).closest('div.ibox'); | ||
var button = $(this).find('i'); | ||
var content = ibox.find('div.ibox-content'); | ||
content.slideToggle(200); | ||
button.toggleClass('fa-chevron-up').toggleClass('fa-chevron-down'); | ||
ibox.toggleClass('').toggleClass('border-bottom'); | ||
setTimeout(function () { | ||
ibox.resize(); | ||
ibox.find('[id^=map-]').resize(); | ||
}, 50); | ||
}); | ||
// Close ibox function | ||
$('.close-link').on('click', function () { | ||
var content = $(this).closest('div.ibox'); | ||
content.remove(); | ||
}); | ||
// Fullscreen ibox function | ||
$('.fullscreen-link').on('click', function () { | ||
var ibox = $(this).closest('div.ibox'); | ||
var button = $(this).find('i'); | ||
$('body').toggleClass('fullscreen-ibox-mode'); | ||
button.toggleClass('fa-expand').toggleClass('fa-compress'); | ||
ibox.toggleClass('fullscreen'); | ||
setTimeout(function () { | ||
$(window).trigger('resize'); | ||
}, 100); | ||
}); | ||
// Close menu in canvas mode | ||
$('.close-canvas-menu').on('click', function () { | ||
$("body").toggleClass("mini-navbar"); | ||
SmoothlyMenu(); | ||
}); | ||
// Run menu of canvas | ||
$('body.canvas-menu .sidebar-collapse').slimScroll({ | ||
height: '100%', | ||
railOpacity: 0.9 | ||
}); | ||
// Open close right sidebar | ||
$('.right-sidebar-toggle').on('click', function () { | ||
$('#right-sidebar').toggleClass('sidebar-open'); | ||
}); | ||
// Initialize slimscroll for right sidebar | ||
$('.sidebar-container').slimScroll({ | ||
height: '100%', | ||
railOpacity: 0.4, | ||
wheelStep: 10 | ||
}); | ||
// Open close small chat | ||
$('.open-small-chat').on('click', function () { | ||
$(this).children().toggleClass('fa-comments').toggleClass('fa-remove'); | ||
$('.small-chat-box').toggleClass('active'); | ||
}); | ||
// Initialize slimscroll for small chat | ||
$('.small-chat-box .content').slimScroll({ | ||
height: '234px', | ||
railOpacity: 0.4 | ||
}); | ||
// Small todo handler | ||
$('.check-link').on('click', function () { | ||
var button = $(this).find('i'); | ||
var label = $(this).next('span'); | ||
button.toggleClass('fa-check-square').toggleClass('fa-square-o'); | ||
label.toggleClass('todo-completed'); | ||
return false; | ||
}); | ||
// Minimalize menu | ||
$('.navbar-minimalize').on('click', function () { | ||
$("body").toggleClass("mini-navbar"); | ||
SmoothlyMenu(); | ||
}); | ||
// Tooltips demo | ||
$('.tooltip-demo').tooltip({ | ||
selector: "[data-toggle=tooltip]", | ||
container: "body" | ||
}); | ||
// Full height of sidebar | ||
/*function fix_height() { | ||
var heightWithoutNavbar = $("body > #wrapper").height() - 61; | ||
$(".sidebard-panel").css("min-height", heightWithoutNavbar + "px"); | ||
var navbarHeigh = $('nav.navbar-default').height(); | ||
var wrapperHeigh = $('#page-wrapper').height(); | ||
if (navbarHeigh > wrapperHeigh) { | ||
$('#page-wrapper').css("min-height", navbarHeigh + "px"); | ||
} | ||
if (navbarHeigh < wrapperHeigh) { | ||
$('#page-wrapper').css("min-height", $(window).height() + "px"); | ||
} | ||
if ($('body').hasClass('fixed-nav')) { | ||
if (navbarHeigh > wrapperHeigh) { | ||
$('#page-wrapper').css("min-height", navbarHeigh - 60 + "px"); | ||
} else { | ||
$('#page-wrapper').css("min-height", $(window).height() - 60 + "px"); | ||
} | ||
} | ||
} | ||
fix_height(); | ||
*/ | ||
// Fixed Sidebar | ||
$(window).bind("load", function () { | ||
if ($("body").hasClass('fixed-sidebar')) { | ||
$('.sidebar-collapse').slimScroll({ | ||
height: '100%', | ||
railOpacity: 0.9 | ||
}); | ||
} | ||
}); | ||
// Move right sidebar top after scroll | ||
$(window).scroll(function () { | ||
if ($(window).scrollTop() > 0 && !$('body').hasClass('fixed-nav')) { | ||
$('#right-sidebar').addClass('sidebar-top'); | ||
} else { | ||
$('#right-sidebar').removeClass('sidebar-top'); | ||
} | ||
}); | ||
/* $(window).bind("load resize scroll", function () { | ||
if (!$("body").hasClass('body-small')) { | ||
fix_height(); | ||
} | ||
});*/ | ||
$("[data-toggle=popover]").popover(); | ||
// Add slimscroll to element | ||
$('.full-height-scroll').slimscroll({ | ||
height: '100%' | ||
} | ||
// Local Storage functions | ||
// Set proper body class and plugins based on user configuration | ||
);if (localStorageSupport()) { | ||
var collapse = localStorage.getItem("collapse_menu"); | ||
var fixedsidebar = localStorage.getItem("fixedsidebar"); | ||
var fixednavbar = localStorage.getItem("fixednavbar"); | ||
var boxedlayout = localStorage.getItem("boxedlayout"); | ||
var fixedfooter = localStorage.getItem("fixedfooter"); | ||
var body = $('body'); | ||
if (fixedsidebar == 'on') { | ||
body.addClass('fixed-sidebar'); | ||
$('.sidebar-collapse').slimScroll({ | ||
height: '100%', | ||
railOpacity: 0.9 | ||
}); | ||
} | ||
if (collapse == 'on') { | ||
if (body.hasClass('fixed-sidebar')) { | ||
if (!body.hasClass('body-small')) { | ||
body.addClass('mini-navbar'); | ||
} | ||
} else { | ||
if (!body.hasClass('body-small')) { | ||
body.addClass('mini-navbar'); | ||
} | ||
} | ||
} | ||
if (fixednavbar == 'on') { | ||
$(".navbar-static-top").removeClass('navbar-static-top').addClass('navbar-fixed-top'); | ||
body.addClass('fixed-nav'); | ||
} | ||
if (boxedlayout == 'on') { | ||
body.addClass('boxed-layout'); | ||
} | ||
if (fixedfooter == 'on') { | ||
$(".footer").addClass('fixed'); | ||
} | ||
} | ||
} | ||
// Minimalize menu when screen is less than 768px | ||
$(window).bind("resize", function () { | ||
/*if ($(this).width() < 769) { | ||
$('body').addClass('body-small') | ||
} else { | ||
$('body').removeClass('body-small') | ||
}*/ | ||
// Collapse sidebar if screen is under 1250px | ||
if ($(this).width() < 1250) { | ||
$('body').addClass('mini-navbar'); | ||
} else { | ||
$('body').removeClass('mini-navbar'); | ||
} | ||
}); | ||
// check if browser support HTML5 local storage | ||
function localStorageSupport() { | ||
return 'localStorage' in window && window['localStorage'] !== null; | ||
} | ||
// For demo purpose - animation css script | ||
/*function animationHover(element, animation) { | ||
element = $(element); | ||
element.hover( | ||
function () { | ||
element.addClass('animated ' + animation); | ||
}, | ||
function () { | ||
//wait for animation to finish before removing classes | ||
window.setTimeout(function () { | ||
element.removeClass('animated ' + animation); | ||
}, 2000); | ||
}); | ||
}*/ | ||
function SmoothlyMenu() { | ||
if (!$('body').hasClass('mini-navbar') || $('body').hasClass('body-small')) { | ||
// Hide menu in order to smoothly turn on when maximize menu | ||
$('#side-menu').hide(); | ||
// For smoothly turn on menu | ||
setTimeout(function () { | ||
$('#side-menu').fadeIn(400); | ||
}, 200); | ||
} else if ($('body').hasClass('fixed-sidebar')) { | ||
$('#side-menu').hide(); | ||
setTimeout(function () { | ||
$('#side-menu').fadeIn(400); | ||
}, 100); | ||
} else { | ||
// Remove all inline style from jquery fadeIn function to reset menu state | ||
$('#side-menu').removeAttr('style'); | ||
} | ||
} | ||
export default loadInspinia; | ||
define(function(){"use strict";function e(){if($("body").width()<1250?$("body").addClass("mini-navbar"):$("body").removeClass("mini-navbar"),$("#side-menu").metisMenu({toggle:!1,activeClass:"activeMenu"}),$(".collapse-link").on("click",function(){var e=$(this).closest("div.ibox"),o=$(this).find("i");e.find("div.ibox-content").slideToggle(200),o.toggleClass("fa-chevron-up").toggleClass("fa-chevron-down"),e.toggleClass("").toggleClass("border-bottom"),setTimeout(function(){e.resize(),e.find("[id^=map-]").resize()},50)}),$(".close-link").on("click",function(){$(this).closest("div.ibox").remove()}),$(".fullscreen-link").on("click",function(){var e=$(this).closest("div.ibox"),o=$(this).find("i");$("body").toggleClass("fullscreen-ibox-mode"),o.toggleClass("fa-expand").toggleClass("fa-compress"),e.toggleClass("fullscreen"),setTimeout(function(){$(window).trigger("resize")},100)}),$(".close-canvas-menu").on("click",function(){$("body").toggleClass("mini-navbar"),i()}),$("body.canvas-menu .sidebar-collapse").slimScroll({height:"100%",railOpacity:.9}),$(".right-sidebar-toggle").on("click",function(){$("#right-sidebar").toggleClass("sidebar-open")}),$(".sidebar-container").slimScroll({height:"100%",railOpacity:.4,wheelStep:10}),$(".open-small-chat").on("click",function(){$(this).children().toggleClass("fa-comments").toggleClass("fa-remove"),$(".small-chat-box").toggleClass("active")}),$(".small-chat-box .content").slimScroll({height:"234px",railOpacity:.4}),$(".check-link").on("click",function(){var e=$(this).find("i"),o=$(this).next("span");return e.toggleClass("fa-check-square").toggleClass("fa-square-o"),o.toggleClass("todo-completed"),!1}),$(".navbar-minimalize").on("click",function(){$("body").toggleClass("mini-navbar"),i()}),$(".tooltip-demo").tooltip({selector:"[data-toggle=tooltip]",container:"body"}),$(window).bind("load",function(){$("body").hasClass("fixed-sidebar")&&$(".sidebar-collapse").slimScroll({height:"100%",railOpacity:.9})}),$(window).scroll(function(){$(window).scrollTop()>0&&!$("body").hasClass("fixed-nav")?$("#right-sidebar").addClass("sidebar-top"):$("#right-sidebar").removeClass("sidebar-top")}),$("[data-toggle=popover]").popover(),$(".full-height-scroll").slimscroll({height:"100%"}),o()){var e=localStorage.getItem("collapse_menu"),a=localStorage.getItem("fixedsidebar"),s=localStorage.getItem("fixednavbar"),l=localStorage.getItem("boxedlayout"),t=localStorage.getItem("fixedfooter"),n=$("body");"on"==a&&(n.addClass("fixed-sidebar"),$(".sidebar-collapse").slimScroll({height:"100%",railOpacity:.9})),"on"==e&&(n.hasClass("fixed-sidebar"),n.hasClass("body-small")||n.addClass("mini-navbar")),"on"==s&&($(".navbar-static-top").removeClass("navbar-static-top").addClass("navbar-fixed-top"),n.addClass("fixed-nav")),"on"==l&&n.addClass("boxed-layout"),"on"==t&&$(".footer").addClass("fixed")}}function o(){return"localStorage"in window&&null!==window.localStorage}function i(){!$("body").hasClass("mini-navbar")||$("body").hasClass("body-small")?($("#side-menu").hide(),setTimeout(function(){$("#side-menu").fadeIn(400)},200)):$("body").hasClass("fixed-sidebar")?($("#side-menu").hide(),setTimeout(function(){$("#side-menu").fadeIn(400)},100)):$("#side-menu").removeAttr("style")}$(window).bind("resize",function(){$(this).width()<1250?$("body").addClass("mini-navbar"):$("body").removeClass("mini-navbar")}),module.exports=e}); |
{ | ||
"name": "@ninjamsp/ninja-inspinia", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"main": "bundle.js", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
3887
14