File: D:/HostingSpaces/LHouwen/dokuwiki.logic.nl/wwwroot/lib/tpl/bootstrap3/script.js
/*!
* DokuWiki Bootstrap3 Template: Hacks!
*
* Home http://dokuwiki.org/template:bootstrap3
* Author Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
* License GPL 2 (http://www.gnu.org/licenses/gpl.html)
*/
jQuery(document).ready(function() {
//'use strict';
if (typeof JSINFO.bootstrap3 === 'undefined') {
JSINFO.bootstrap3 = {};
}
function dw_mode(id) {
return ((JSINFO.bootstrap3.mode === id) ? true : false);
}
function dw_admin(page) {
return ((JSINFO.bootstrap3.admin === page) ? true : false);
}
function mediaSize(media) {
return jQuery(['#screen__mode .visible-', media, '-block'].join('')).is(':visible');
}
jQuery(window).resize(function() {
jQuery(document).trigger('bootstrap3:mobile-layout');
jQuery(document).trigger('bootstrap3:collapse-sections');
jQuery(document).trigger('bootstrap3:toc-resize');
});
// Add typeahead support for quick seach
jQuery("#qsearch").typeahead({
source: function(query, process) {
return jQuery.post(DOKU_BASE + 'lib/exe/ajax.php', {
call: 'qsearch',
q: encodeURI(query)
},
function(data) {
var results = [];
jQuery(data).find('a').each(function(){
var page = jQuery(this);
results.push({
name : page.text(),
href : page.attr('href'),
title : page.attr('title'),
category : page.attr('title').replace(/:/g, ' ยป '),
});
});
return process(results);
});
},
itemLink: function (item) {
return item.href;
},
itemTitle: function (item) {
return item.title;
},
followLinkOnSelect : true,
autoSelect : false,
items : 50,
fitToElement : true,
delay : 500,
});
// Replace ALL input[type=submit|reset|button] (with no events) to button[type=submit|reset|button] for CSS styling
jQuery.fn.extend({
input2button: function() {
return this.each(function() {
var attrs = { 'type' : 'button' },
label = '',
node = jQuery(this);
if (typeof node.data('events') === 'undefined' && node.prop('tagName') == 'INPUT') {
jQuery(node[0].attributes).each(function(index, attribute) {
if (attribute.name == 'value') {
label = attribute.value;
} else {
attrs[attribute.name] = attribute.value;
}
});
var newNode = jQuery('<button/>', attrs).html(label);
node.replaceWith(newNode);
}
});
}
});
/* DOKUWIKI:include js/template.js */
// Init template
jQuery(document).trigger('bootstrap3:init');
// Init other components
jQuery(document).trigger('bootstrap3:components');
/* DOKUWIKI:include js/plugins.js */
// Init plugins
jQuery(document).trigger('bootstrap3:plugins');
// Re-initialize some components in media-manager
if (dw_mode('media') || jQuery('#media__manager')) {
jQuery(document).ajaxSuccess(function() {
jQuery(document).trigger('bootstrap3:init');
jQuery(document).trigger('bootstrap3:buttons');
jQuery(document).trigger('bootstrap3:tabs');
jQuery(document).trigger('bootstrap3:media-manager');
jQuery(document).trigger('bootstrap3:alerts')
});
}
// Init AnchorJS
if (JSINFO.bootstrap3.config.useAnchorJS) {
jQuery(document).trigger('bootstrap3:anchorjs');
}
// Hash change
if (JSINFO.bootstrap3.config.fixedTopNavbar) {
var scrollOnHashChange = function() {
scrollBy(0, - (parseInt(jQuery('body').css('marginTop')) || 0));
};
if (location.hash) {
setTimeout(function() {
scrollOnHashChange();
}, 1);
}
jQuery(window).on('hashchange', function() {
scrollOnHashChange();
});
}
// Index mode
if (dw_mode('index')) {
jQuery(document).trigger('bootstrap3:mode-index');
jQuery(document).ajaxSuccess(function() {
jQuery(document).trigger('bootstrap3:mode-index');
});
jQuery('#index__tree').click(function(e) {
jQuery(document).trigger('bootstrap3:mode-index');
});
}
});