$(document).ready(function() { var self = $(this); // Helpers $.fn.elementText = function() { return $(this).clone().children().remove().end().text(); }; // Aesthetical enhancements $('table').addClass('table table-striped table-responsive') // Sidebar expanding self.sidebarExpanded = false; self.originalSidebarStyle = { 'width': '', 'position': '', 'box-shadow': '', }; self.originalSidebarLeftMargin = parseInt($('#p-sidebar').css( 'margin-left')); self.sidebarLeftMarginAnimationWidth = 10; self.sidebarExpandedStyle = { 'width': '80%', 'right': '20px', 'position': 'absolute', 'box-shadow': '0 0 0 9999px rgba(0, 0, 0, 0.3)', }; self.sidebarWidthToggleOriginalText = $('#p-sidebar-width-toggle').text(); self.sidebarWidthToggleExpandedText = 'Narrow sidebar'; self.previousScrollPosition = null; self.toggleSidebarWidth = function() { if (self.sidebarExpanded) { self.sidebarExpanded = false; $('#p-sidebar-width-toggle') .text(self.sidebarWidthToggleOriginalText); $('#p-sidebar').css(self.originalSidebarStyle); // Scroll to the previous scroll position. $('html').scrollTop(self.previousScrollPosition); } else { self.sidebarExpanded = true; $('#p-sidebar-width-toggle') .text(self.sidebarWidthToggleExpandedText); $('#p-sidebar').css(self.sidebarExpandedStyle); // Scroll to thetop of the page. self.previousScrollPosition = $('html').scrollTop(); $('html').scrollTop(0); } }; $('#p-sidebar-width-toggle').click(function(e) { e.preventDefault(); self.toggleSidebarWidth(); }); // Collapse the sidebar when clicking on a link while the sidebar is // expanded. So when hitting the back button the sidebar will be // collapsed. This is moreintuitive. $('#toc a').click(function() { if (self.sidebarExpanded) { self.toggleSidebarWidth(); } }); // Keybinding $('body').append( '\
\

Close

\

Key bindings

\
\

?: Toggle key bindings help

\

w: Toggle sidebar width

\

s: Select sidebar search box

\

Esc: Unselect sidebar search box

\

p: Go to page search page

\

e: Edit selected text

\ Editor textarea:\

Ctrl + RET: Save changes \

Alt + p: Go to previous match \

Alt + n: Go to next match \

\ ' ); self.helpBox = $('#help-box'); self.helpBox.hide(); self.helpBox.css({ 'position': 'fixed', 'background-color': '#FAFAFA', 'color': '#686868', 'top': '50%', 'left': '50%', 'width': '500px', 'height': '430px', 'margin-left': '-200px', 'margin-top': '-300px', 'z-index': '9999', 'padding': '10px', 'box-shadow': '0 0 0 9999px rgba(0, 0, 0, 0.2)', 'border': '1px solid #ACACAC', }); $('#p-sidebar-search-box').parent().find('a:first').parent().prepend('\ Key bindings\ '); $('.help-box-toggle').click(function(e) { e.preventDefault(); self.helpBox.toggle(); }) $(document).keypress(function(e) { // 119: w - Toggle sidebar width // 115: s - Select sidebar search box // 0: Esc - Unselect sidebar search box // 112: s - Go to page search page // 63: ? - Toggle key bindings help if (e.target.nodeName != 'INPUT' && e.target.nodeName != 'TEXTAREA') { if (e.which == 119) { self.toggleSidebarWidth(); } else if (e.which == 115) { $('#p-sidebar-search-box').select(); } else if (e.which == 112) { window.location = $('#p-page-search-link').attr('href'); } else if (e.which == 63) { $('#help-box').toggle(); } } else if (e.target.id == 'sidebar-search-box') { if (e.which == 0) { $('#p-sidebar-search-box').blur(); } } }); // Skip `Key bindings' and `Widen sidebar' links when navigation using // TAB. $('#p-sidebar-search-box').parent().find('a').slice(0,2) .each(function(index) { $(this).attr('tabindex', '9999'); // Add tooltips var title = ''; if (index == 0) { title = 'Shortcut: "?"'; } else if (index == 1) { title = 'Shortcut: "w"'; } $(this).attr('title', title); $(this).attr('data-toggle', 'tooltip'); $(this).attr('data-placement', 'top'); }); // Search $('#p-sidebar-search-box').keyup(function() { var filter = $(this).val().toLowerCase(); $('#p-sidebar li').each(function() { var text = $(this).text().toLowerCase(); if (text.match(filter)) { $(this).show() } else { $(this).hide(); } }); }); });