From da184889aace37a2e11ad044ef56a9294690cfe7 Mon Sep 17 00:00:00 2001 From: Mottie Date: Tue, 21 Jul 2015 21:40:15 -0500 Subject: [PATCH] Docs: remove saveSort from sort2Hash demo --- docs/example-widget-sort-to-hash.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/example-widget-sort-to-hash.html b/docs/example-widget-sort-to-hash.html index 0587ea0b..2b805bcf 100644 --- a/docs/example-widget-sort-to-hash.html +++ b/docs/example-widget-sort-to-hash.html @@ -25,22 +25,22 @@ $( 'table' ).tablesorter({ theme: 'blue', - widgets: [ 'zebra', 'sort2Hash', 'saveSort' ], + widgets: [ 'zebra', 'sort2Hash' ], widgetOptions : { // hash prefix - sort2Hash_hash : '#', + sort2Hash_hash : '#', // don't '#' or '=' here - sort2Hash_separator : ',', + sort2Hash_separator : ',', // this option > table ID > table index on page - sort2Hash_tableId : null, + sort2Hash_tableId : null, // if true, show header cell text instead of a zero-based column index - sort2Hash_useHeaderText : false, + sort2Hash_useHeaderText : false, // allow processing of text if sort2Hash_useHeaderText: true sort2Hash_processHeaderText : null, // function( text, config, columnIndex ) {}, // direction text shown in the URL e.g. [ 'asc', 'desc' ] - sort2Hash_directionText : [ 0, 1 ], // default values + sort2Hash_directionText : [ 0, 1 ], // default values // if true, override saveSort widget sort, if used & stored sort is available - sort2Hash_overrideSaveSort : true + sort2Hash_overrideSaveSort : true // default = false } });