Created
December 13, 2012 14:48
-
-
Save jcalonso/4276833 to your computer and use it in GitHub Desktop.
Revisions
-
jcalonso revised this gist
Dec 13, 2012 . 1 changed file with 25 additions and 25 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,29 +1,29 @@ <script> jQuery(function() { jQuery('#allinone_bannerWithPlaylist_elegant').allinone_bannerWithPlaylist({ skin: 'elegant', width: 850, height: 400, origThumbImgW: 90, origThumbImgH: 90, circleColor: "#c3a62e", autoPlay: 10 }); //This function enables clicking the menu buttons and displays //the submenu (if present). It's a workaround for touch devices $('.menuItem').click(function() { if ($(this).find('ul').css('display') === 'block') { $(this).find('ul').css('display', 'none'); } else { $(this).trigger('hover'); $(this).find('ul').show(); } }); }); </script> -
jcalonso renamed this gist
Dec 13, 2012 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jcalonso created this gist
Dec 13, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ <script> jQuery(function() { jQuery('#allinone_bannerWithPlaylist_elegant').allinone_bannerWithPlaylist({ skin: 'elegant', width: 850, height: 400, origThumbImgW:90, origThumbImgH:90, circleColor: "#c3a62e", autoPlay: 10 }); //This function enables clicking the menu buttons and displays //the submenu (if present). It's a workaround for touch devices $('.menuItem').click(function() { if ($(this).find('ul').css('display') === 'block') { $(this).find('ul').css('display','none'); } else { $(this).trigger('hover'); $(this).find('ul').show(); } }); }); </script>