Comparing version 1.0.0 to 1.0.1
@@ -13,3 +13,3 @@ (function($) { | ||
$(document).on("ready", function() { | ||
$(document).ready(function() { | ||
$(window).trigger("resize"); | ||
@@ -45,10 +45,10 @@ mainMenu(); | ||
function mainMenu() { | ||
$(".tb-nav-toggle").on("click", function() { | ||
$(this).siblings(".tb-nav").slideToggle(); | ||
$(this).toggleClass("tb-active"); | ||
$(".yoo-nav-toggle").on("click", function() { | ||
$(this).siblings(".yoo-nav").slideToggle(); | ||
$(this).toggleClass("yoo-active"); | ||
}); | ||
$(".tb-has-children").append('<span class="tb-dropdown-btn"></span>'); | ||
$(".tb-dropdown-btn").on("click", function() { | ||
$(this).siblings("ul, .tb-megamenu-in, .tb-vertical-megamenu-in").slideToggle("slow"); | ||
$(this).toggleClass("tb-active"); | ||
$(".yoo-has-children").append('<span class="yoo-dropdown-btn"></span>'); | ||
$(".yoo-dropdown-btn").on("click", function() { | ||
$(this).siblings("ul, .yoo-megamenu-in, .yoo-vertical-megamenu-in").slideToggle("slow"); | ||
$(this).toggleClass("yoo-active"); | ||
}); | ||
@@ -59,7 +59,7 @@ } | ||
if ($(window).width() <= 991) { | ||
$(".tb-header").addClass("tb-mobile-header"); | ||
$(".tb-nav").addClass("tb-mobile-nav").removeClass("tb-desktop-nav"); | ||
$(".yoo-header").addClass("yoo-mobile-header"); | ||
$(".yoo-nav").addClass("yoo-mobile-nav").removeClass("yoo-desktop-nav"); | ||
} else { | ||
$(".tb-header").removeClass("tb-mobile-header"); | ||
$(".tb-nav").addClass("tb-desktop-nav").removeClass("tb-mobile-nav"); | ||
$(".yoo-header").removeClass("yoo-mobile-header"); | ||
$(".yoo-nav").addClass("yoo-desktop-nav").removeClass("yoo-mobile-nav"); | ||
} | ||
@@ -71,5 +71,5 @@ } | ||
if (scroll >= 10) { | ||
$(".tb-header").addClass("tb-sticky-active"); | ||
$(".yoo-header").addClass("yoo-sticky-active"); | ||
} else { | ||
$(".tb-header").removeClass("tb-sticky-active"); | ||
$(".yoo-header").removeClass("yoo-sticky-active"); | ||
} | ||
@@ -79,19 +79,19 @@ } | ||
function sideBarHeader() { | ||
$(".tb-sidebar-has-children").append('<span class="tb-dropdown-arrow"></span>'); | ||
$('.tb-sidebar-nav-dropdown .active').parents('.tb-sidebar-nav-dropdown').show(); | ||
$('.tb-sidebar-nav-dropdown .active').parents('.tb-sidebar-nav-dropdown').siblings('.tb-dropdown-arrow').addClass('active'); | ||
$(".tb-sidebar-has-children>a").removeAttr("href").on("click", function() { | ||
$(this).siblings(".tb-sidebar-nav-dropdown").slideToggle(); | ||
$(this).siblings(".tb-dropdown-arrow").toggleClass("active"); | ||
$(".yoo-sidebar-has-children").append('<span class="yoo-dropdown-arrow"></span>'); | ||
$('.yoo-sidebar-nav-dropdown .active').parents('.yoo-sidebar-nav-dropdown').show(); | ||
$('.yoo-sidebar-nav-dropdown .active').parents('.yoo-sidebar-nav-dropdown').siblings('.yoo-dropdown-arrow').addClass('active'); | ||
$(".yoo-sidebar-has-children>a").removeAttr("href").on("click", function() { | ||
$(this).siblings(".yoo-sidebar-nav-dropdown").slideToggle(); | ||
$(this).siblings(".yoo-dropdown-arrow").toggleClass("active"); | ||
}); | ||
$(".tb-sidebarheader-toggle").on("click", function() { | ||
$("body").toggleClass("tb-sidebar-active"); | ||
$(".yoo-sidebarheader-toggle").on("click", function() { | ||
$("body").toggleClass("yoo-sidebar-active"); | ||
}); | ||
// Hover To Class Toggle | ||
$(".tb-sidebarheader").hover( | ||
$(".yoo-sidebarheader").hover( | ||
function() { | ||
$("body").addClass("tb-sidebar-hover-active"); | ||
$("body").addClass("yoo-sidebar-hover-active"); | ||
}, | ||
function() { | ||
$("body").removeClass("tb-sidebar-hover-active"); | ||
$("body").removeClass("yoo-sidebar-hover-active"); | ||
} | ||
@@ -126,22 +126,22 @@ ); | ||
// Custome Toggle Button | ||
$(".tb-toggle-btn").on("click", function() { | ||
$(this).toggleClass("active").siblings(".tb-dropdown").toggleClass("active"); | ||
$(this).parents("li").siblings().find(".tb-dropdown, .tb-toggle-btn").removeClass("active"); | ||
$(this).parents('.tb-toggle-body').siblings().find('.tb-dropdown, .tb-toggle-btn').removeClass('active'); | ||
$(".yoo-toggle-btn").on("click", function() { | ||
$(this).toggleClass("active").siblings(".yoo-dropdown").toggleClass("active"); | ||
$(this).parents("li").siblings().find(".yoo-dropdown, .yoo-toggle-btn").removeClass("active"); | ||
$(this).parents('.yoo-toggle-body').siblings().find('.yoo-dropdown, .yoo-toggle-btn').removeClass('active'); | ||
}); | ||
$('.tb-toggle-cross-btn').on('click', function() { | ||
$(this).parents('.tb-toggle-body').find('.tb-toggle-btn, .tb-dropdown').removeClass('active'); | ||
$('.yoo-toggle-cross-btn').on('click', function() { | ||
$(this).parents('.yoo-toggle-body').find('.yoo-toggle-btn, .yoo-dropdown').removeClass('active'); | ||
}) | ||
$(document).on("click", function() { | ||
$(".tb-dropdown").removeClass("active").siblings().removeClass("active"); | ||
$(".yoo-dropdown").removeClass("active").siblings().removeClass("active"); | ||
}); | ||
$(".tb-dropdown, .tb-toggle-btn").on("click", function(e) { | ||
$(".yoo-dropdown, .yoo-toggle-btn").on("click", function(e) { | ||
e.stopPropagation(); | ||
}); | ||
$('.tb-toggle-cross').on('click', function() { | ||
$(this).parents('.tb-dropdown').removeClass('active').siblings('.tb-toggle-btn').removeClass('active'); | ||
$('.yoo-toggle-cross').on('click', function() { | ||
$(this).parents('.yoo-dropdown').removeClass('active').siblings('.yoo-toggle-btn').removeClass('active'); | ||
}) | ||
// Star Toggle Btn | ||
$('.tb-get-star, .tb-mobile-toggle-btn').on('click', function() { | ||
$('.yoo-get-star, .yoo-mobile-toggle-btn').on('click', function() { | ||
$(this).toggleClass('active'); | ||
@@ -171,3 +171,3 @@ }) | ||
function stickyFooter() { | ||
$('.tb-sticky-footer').parents('.tb-content').append('<div class="tb-height-b40 tb-height-lg-b0"></div>'); | ||
$('.yoo-sticky-footer').parents('.yoo-content').append('<div class="yoo-height-b40 yoo-height-lg-b0"></div>'); | ||
} | ||
@@ -174,0 +174,0 @@ |
{ | ||
"name": "istrap", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "iOS design system blends in with Bootstrap", | ||
@@ -5,0 +5,0 @@ "main": "assets/js/istrap.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 14 instances in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
0
2
3
5995462
156
6976