Changed the collapsible cleanup in our docs JS to use click instead of vclick

This commit is contained in:
scottjehl 2011-08-03 13:41:12 -04:00
parent a48128f9a3
commit a362a782fa

View file

@ -29,7 +29,7 @@ $('div').live('pagecreate',function(event){
//collapse page navs after use
$(function(){
$('body').delegate('.content-secondary .ui-collapsible-content', 'vclick', function(){
$('body').delegate('.content-secondary .ui-collapsible-content', 'click', function(){
$(this).trigger("collapse")
});
});