From e02cfb1940c721efa29d7766763e5d5beaf46189 Mon Sep 17 00:00:00 2001 From: Lizi Date: Thu, 18 Jan 2018 09:24:19 +0000 Subject: Remove the redundancy packages Change-Id: I1c04ad98a1fc0351b69c125c7afc8b6ee8ad64af Issue-ID: AAI-591 Signed-off-by: Lizi --- .../webapp/thirdparty/icheck/demo/js/custom.js | 109 --------------------- 1 file changed, 109 deletions(-) delete mode 100644 common/src/main/webapp/thirdparty/icheck/demo/js/custom.js (limited to 'common/src/main/webapp/thirdparty/icheck/demo/js/custom.js') diff --git a/common/src/main/webapp/thirdparty/icheck/demo/js/custom.js b/common/src/main/webapp/thirdparty/icheck/demo/js/custom.js deleted file mode 100644 index eace30e..0000000 --- a/common/src/main/webapp/thirdparty/icheck/demo/js/custom.js +++ /dev/null @@ -1,109 +0,0 @@ -$(document).ready(function() { - var hash = window.location.hash.replace('#', ''); - - if (hash && $('.' + hash).length) { - var point = $('.' + hash).offset().top - 40; - - if (window.Zepto) { - window.scrollTo(0, point); - } else { - $(window).scrollTop($('.' + hash).offset().top - 40); - }; - }; - - $('.skin dt').click(function() { - $(this).siblings().removeClass('selected').end().prev('dd').andSelf().addClass('selected'); - }); - - $('.arrows .top, .arrows .bottom, .features .self, .skins-info .self, .usage .self').click(function(event) { - var target = $(this).data('to'), - target_offset = $('.' + target).offset().top; - - event.preventDefault(); - window.location.hash = target; - - if (window.Zepto) { - window.scrollTo(0, target_offset - 40); - } else { - $('html, body').stop().animate({scrollTop: target_offset - 40}, 600); - }; - }); - - $('.colors li').click(function() { - var self = $(this); - - if (!self.hasClass('active')) { - self.siblings().removeClass('active'); - - var skin = self.closest('.skin'), - color = self.attr('class') ? '-' + self.attr('class') : '', - checkbox = skin.data('icheckbox'), - radio = skin.data('iradio'), - checkbox_default = 'icheckbox_minimal', - radio_default = 'iradio_minimal'; - - if (skin.hasClass('skin-square')) { - checkbox_default = 'icheckbox_square', radio_default = 'iradio_square'; - checkbox == undefined && (checkbox = 'icheckbox_square-green', radio = 'iradio_square-green'); - }; - - if (skin.hasClass('skin-flat')) { - checkbox_default = 'icheckbox_flat', radio_default = 'iradio_flat'; - checkbox == undefined && (checkbox = 'icheckbox_flat-red', radio = 'iradio_flat-red'); - }; - - if (skin.hasClass('skin-line')) { - checkbox_default = 'icheckbox_line', radio_default = 'iradio_line'; - checkbox == undefined && (checkbox = 'icheckbox_line-blue', radio = 'iradio_line-blue'); - }; - - checkbox == undefined && (checkbox = checkbox_default, radio = radio_default); - - skin.find('input, .skin-states .state').each(function() { - var element = $(this).hasClass('state') ? $(this) : $(this).parent(), - element_class = element.attr('class').replace(checkbox, checkbox_default + color).replace(radio, radio_default + color); - - element.attr('class', element_class); - }); - - skin.data('icheckbox', checkbox_default + color); - skin.data('iradio', radio_default + color); - self.addClass('active'); - }; - }); - - $('.demo-methods dt .self').click(function() { - var self = $(this), - self_class = self.attr('class').replace('self ', ''); - - switch (self_class) { - case 'do-check': - $('#input-1, #input-3').iCheck('check'); - break; - case 'do-uncheck': - $('#input-1, #input-3').iCheck('uncheck'); - break; - case 'do-disable': - $('#input-2, #input-4').iCheck('disable'); - break; - case 'do-enable': - $('#input-2, #input-4').iCheck('enable'); - break; - case 'do-destroy': - $('.demo-list input').iCheck('destroy'); - break; - default: - var text = self.hasClass('active') ? 'show code' : 'hide code'; - - self.toggleClass('active').text(text); - - if (window.Zepto) { - $(this).closest('dt').next().toggle(); - } else { - $(this).closest('dt').next().slideToggle(200); - }; - - break; - }; - }); -}); \ No newline at end of file -- cgit 1.2.3-korg