Sha256: 4de2fb85a2794448fa3cfe85afb05b1bd2e4a53a3121ce2b51ef0aab249924a2
Contents?: true
Size: 755 Bytes
Versions: 22
Compression:
Stored size: 755 Bytes
Contents
//= require jquery //= require jquery_ujs //= require bootstrap //= require wice_grid //= require bootstrap-datetimepicker.min function toggleSubMenu() { $('.child').hide(); $('.parent').children().click(function() { if ($(this).hasClass('toggle')) { $(this).removeClass('toggle'); } else { $(this).addClass('toggle'); } $(this).children('.child').slideToggle('slow'); }).children('.child').click(function (event) { event.stopPropagation(); }); } $(document).ready(function() { $("a[rel=popover]").popover(); $(".tooltip").tooltip(); $("a[rel=tooltip]").tooltip(); $('.dropdown-toggle').dropdown(); $('.datetimepicker').datetimepicker({ format: 'yyyy-MM-dd hh:mm:ss' }); toggleSubMenu(); });
Version data entries
22 entries across 22 versions & 1 rubygems