Merge branch '1.0.x' into testing

This commit is contained in:
Evan Prodromou 2011-06-09 10:33:36 -04:00
commit fdee419051
1 changed files with 10 additions and 1 deletions

View File

@ -348,9 +348,18 @@ class MobileProfilePlugin extends WAP20Plugin
$("#navtoggle").text(
text == "Show Navigation" ? "Hide Navigation" : "Show Navigation");
});
$(".checkbox-wrapper").unbind("click");
});'
);
if ($this->serveMobile) {
$action->inlineScript('
$(function() {
$(".checkbox-wrapper").unbind("click");
});'
);
}
}