}
}
+ function onStartShowLocalNavBlock($action)
+ {
+ if ($this->serveMobile) {
+ $action->element('a', array('href' => '#', 'id' => 'navtoggle'), 'Show Navigation');
+ return true;
+ }
+ }
+
function onEndShowScripts($action)
{
$action->inlineScript('
window.location.reload();
return false;
});
+ $("#navtoggle").click(function () {
+ $("#site_nav_local_views").fadeToggle();
+ var text = $("#navtoggle").text();
+ $("#navtoggle").text(
+ text == "Show Navigation" ? "Hide Navigation" : "Show Navigation");
+ });
});'
);
}