diff --git a/features/fuzzySearch/rankColumn.html b/features/fuzzySearch/rankColumn.html index b0eb69a..ce20069 100644 --- a/features/fuzzySearch/rankColumn.html +++ b/features/fuzzySearch/rankColumn.html @@ -630,11 +630,11 @@ $(document).ready(function() {

The Javascript shown below is used to initialise the table shown in this example:

$(document).ready(function() { - var table = $('#example').DataTable({ - fuzzySearch: { - rankColumn: 6 - } - }); + var table = $('#example').DataTable({ + fuzzySearch: { + rankColumn: 6 + } + }); } ); diff --git a/features/fuzzySearch/returnSearch.html b/features/fuzzySearch/returnSearch.html index b51ed7c..4b79a7e 100644 --- a/features/fuzzySearch/returnSearch.html +++ b/features/fuzzySearch/returnSearch.html @@ -56,7 +56,9 @@ $(document).ready(function() { var table = $('#example').DataTable({ fuzzySearch: true, - search:{return: true} + search: { + return: true + } }); } ); @@ -568,10 +570,12 @@ $(document).ready(function() {

The Javascript shown below is used to initialise the table shown in this example:

$(document).ready(function() { - var table = $('#example').DataTable({ - fuzzySearch: true, - search:{return: true} - }); + var table = $('#example').DataTable({ + fuzzySearch: true, + search: { + return: true + } + }); } ); diff --git a/features/fuzzySearch/stateSaving.html b/features/fuzzySearch/stateSaving.html index 3b05372..7793cab 100644 --- a/features/fuzzySearch/stateSaving.html +++ b/features/fuzzySearch/stateSaving.html @@ -630,13 +630,13 @@ $(document).ready(function() {

The Javascript shown below is used to initialise the table shown in this example:

$(document).ready(function() { - var table = $('#example').DataTable({ - fuzzySearch: { - rankColumn: 6, - toggleSmart: true - }, - stateSave: true - }); + var table = $('#example').DataTable({ + fuzzySearch: { + rankColumn: 6, + toggleSmart: true + }, + stateSave: true + }); } ); diff --git a/features/fuzzySearch/threshold.html b/features/fuzzySearch/threshold.html index 8b06c21..545861f 100644 --- a/features/fuzzySearch/threshold.html +++ b/features/fuzzySearch/threshold.html @@ -637,14 +637,12 @@ $(document).ready(function() {

The Javascript shown below is used to initialise the table shown in this example:

$(document).ready(function() { - $(document).ready(function() { - var table = $('#example').DataTable({ - fuzzySearch: { - rankColumn: 6, - threshold: 0.1 - } - }); - } ); + var table = $('#example').DataTable({ + fuzzySearch: { + rankColumn: 6, + threshold: 0.1 + } + }); } ); diff --git a/features/fuzzySearch/toggleSmart.html b/features/fuzzySearch/toggleSmart.html index 0680b3a..623e83f 100644 --- a/features/fuzzySearch/toggleSmart.html +++ b/features/fuzzySearch/toggleSmart.html @@ -632,14 +632,12 @@ $(document).ready(function() {

The Javascript shown below is used to initialise the table shown in this example:

$(document).ready(function() { - $(document).ready(function() { - var table = $('#example').DataTable({ - fuzzySearch: { - rankColumn: 6, - toggleSmart: true - } - }); - } ); + var table = $('#example').DataTable({ + fuzzySearch: { + rankColumn: 6, + toggleSmart: true + } + }); } );