tablesorter/docs/js/docs.js

198 lines
5.7 KiB
JavaScript
Raw Normal View History

2014-03-09 03:42:51 +00:00
/*jshint browser:true, jquery:true, unused:false */
/*global prettyPrint:false */
(function($){
$(function(){
var $t, t, v, animating, clicked,
cleanupCode = function(code){
return code.replace(/[<>\"\'\t\n]/g, function(m) { return {
'<' : '&lt;',
'>' : '&gt;',
"'" : '&#39;',
'"' : '&quot;',
'\t': ' ',
'\n': '<br/>' // needed for IE
}[m];});
};
$("a.external").each(function(){this.target = '_new';});
// get javascript source
if ($("#js").length) {
$("#javascript pre").addClass('mod').html( cleanupCode( $("#js").html() ) );
}
if ($("#css").length) {
$("pre.lang-css").addClass('mod').html( cleanupCode( $("#css").html() ) );
}
if ($("#demo").length && $("#html pre").length) {
$("#html pre").addClass('mod').html( cleanupCode( $("#demo").html() ) );
}
2014-03-09 03:42:51 +00:00
// apply to already pre-formatted blocks to add <br> for IE
$('pre:not(.mod)').each(function(){
$t = $(this);
$t.html( cleanupCode( $t.html() ) );
});
2011-07-17 15:01:18 +00:00
2014-03-09 03:42:51 +00:00
if (typeof prettyPrint !== 'undefined') { prettyPrint(); }
2013-03-27 23:13:44 +00:00
2014-03-09 03:42:51 +00:00
// hide child rows
$('#root .tablesorter-childRow').hide();
// toggle child row content, not hiding the row since we are using rowspan
$('#root .toggle').click(function(){
$(this).closest('tr').nextUntil('tr:not(.tablesorter-childRow)').toggle();
return false;
});
2014-03-09 03:42:51 +00:00
animating = false;
clicked = false;
$('.collapsible').hide();
2011-07-17 15:01:18 +00:00
2014-03-09 03:42:51 +00:00
$('a.permalink').click(function(){
var $el = $(this);
setTimeout(function(){
if (!animating && !clicked) {
animating = true;
$el.closest('tr').find('.collapsible').slideToggle();
setTimeout(function(){ animating = false; }, 200);
}
}, 200);
return false;
});
2014-03-12 21:03:49 +00:00
$('#root .permalink').dblclick(function(){
2014-03-09 03:42:51 +00:00
clicked = true;
window.location.hash = '#' + $(this).closest('tr')[0].id;
showProperty();
setTimeout(function(){ clicked = false; }, 500);
return false;
});
2011-07-17 15:01:18 +00:00
2014-03-09 03:42:51 +00:00
$('.toggleAll, .showAll, .hideAll').click(function(){
t = $.trim($(this).text());
$(this).parent().next('table').find('.collapsible')[t]();
return false;
});
2014-03-09 03:42:51 +00:00
// update version number
$t = $('.current-version');
if ($t.length) {
$t.html($.tablesorter.version);
}
2014-03-09 03:42:51 +00:00
// add high visibility tags for newest versions (just grab the major revision number 2.10.0 -> 10
t = $.tablesorter.version.replace(/(v|version|\+)/g, '').split('.');
v = [ parseInt(t[0], 10) || 1, parseInt(t[1], 10) || 0 ];
$('.version').each(function(){
var i;
$t = $(this);
i = $t.text().replace(/(v|version|\+)/g, '').split('.');
t = [ parseInt(i[0], 10) || 1, parseInt(i[1], 10) || 0 ];
if (t[0] === v[0] && t[1] >= v[1] - 1 ) {
$t.prepend('<span class="label ' + ( t[0] === v[0] && t[1] < v[1] ? ' label-default' : ' label-success' ) +
'">'+ ($t.hasClass('updated') ? 'Updated' : 'New') + '</span> ');
}
});
$t = $('.accordion');
if ($t.length) {
var id, hashId,
hash = window.location.hash;
// add accodion ids
$t.each(function(i){
$(this).children('h3').each(function(i){
var txt = $(this).find('a').text().toLowerCase().replace(/[-:()\"]/g,'').replace(/[\s+\/]/g,'_');
2014-03-09 03:42:51 +00:00
this.id = txt;
if (hash && txt === hash.slice(1)) {
2014-03-09 03:42:51 +00:00
hashId = i;
}
});
});
// set up accordions
$t.each(function(i){
2014-03-09 03:42:51 +00:00
var $this = $(this);
$this.accordion({
active: hashId,
animate: false,
heightStyle: 'content',
collapsible: true,
create: function() {
$this.children('h3').each(function(i){
this.id = $(this).find('a').text().toLowerCase().replace(/[-:()\"]/g,'').replace(/[\s+\/]/g,'_');
2014-03-09 03:42:51 +00:00
$(this).before('<a class="accordion-link link" data-index="' + i + '" href="#' + this.id + '"></a>');
});
$this.find('.accordion-link').click(function(){
$this.accordion( "option", "active", $(this).data('index') );
});
},
activate: function(e, ui) {
// refresh zebra widget when rows are visible
ui.newPanel.find('table').trigger('applyWidgets');
2014-03-09 03:42:51 +00:00
}
});
// open parent of nested accordion
if ( $this.find(hash).length && !$this.children(hash).length ) {
// div should have an id of ui-accordion-#-panel-#
id = $(hash).closest('.ui-accordion-content').attr('id').match(/(?:panel-)(\d+)/);
if (id && id.length) {
$this.accordion('option', 'active', Number(id[1]));
}
}
2014-03-09 03:42:51 +00:00
});
}
2014-03-09 03:42:51 +00:00
});
2011-07-17 15:01:18 +00:00
2014-03-09 03:42:51 +00:00
function showProperty(){
2014-04-05 13:38:44 +00:00
var prop, $t, wo, h = window.location.hash;
2014-03-09 03:42:51 +00:00
if (h) {
prop = $(h);
2014-04-05 13:38:44 +00:00
if (prop.length && !/h3|a|table/i.test(prop[0].tagName)) {
2014-03-09 03:42:51 +00:00
prop.find('.collapsible').show();
if (h === '#csschildrow') {
$('#root .tablesorter-childRow').show();
2013-05-27 13:38:55 +00:00
}
2014-03-09 03:42:51 +00:00
// move below sticky header; added delay as there could be some lag
setTimeout(function(){
$t = prop.closest('table');
2014-04-05 13:38:44 +00:00
if ($t.length) {
wo = $t[0].config.widgetOptions;
h = ( wo.$sticky ? wo.$sticky.height() : '' ) || 27;
if ($t.hasClass('options') || $t.hasClass('api')) {
window.scrollTo( 0, prop.offset().top - h );
2014-04-05 13:38:44 +00:00
}
2014-03-09 03:42:51 +00:00
}
}, 200);
}
2012-05-08 18:13:21 +00:00
}
}
2014-03-09 03:42:51 +00:00
$(window).load(function(){
if ($('#root').length) {
$(window).bind('hashchange', function(){
showProperty();
});
showProperty();
2014-03-09 03:42:51 +00:00
}
2013-03-27 23:13:44 +00:00
});
2014-03-09 03:42:51 +00:00
// append hidden parsed value to cell
// used by feet-inch-fraction & metric parser demos
window.addParsedValues = function($t, cols, format){
2014-03-09 03:42:51 +00:00
var r,
$r = $t.find('tbody tr'),
c = $t[0].config.cache[0].normalized;
$r.each(function(i){
r = this;
$.each(cols, function(v,j){
r.cells[j].innerHTML += ' <span class="val hidden removeme">(<span class="results">' + (format ? format(c[i][j]) : c[i][j]) + '</span>)</span>';
});
});
$('.toggleparsedvalue').on('click', function(){
$('.val').toggleClass('hidden');
return false;
});
};
2013-03-27 23:13:44 +00:00
2014-03-09 03:42:51 +00:00
})(jQuery);