diff --git a/features/fuzzySearch/rankColumn.html b/features/fuzzySearch/rankColumn.html index 2486805..bb5ac81 100644 --- a/features/fuzzySearch/rankColumn.html +++ b/features/fuzzySearch/rankColumn.html @@ -626,14 +626,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: {
- toggleSmart: true,
- rankColumn: 6,
- threshold: 0.5,
- returnSearch: false
- }
- });
+ $(document).ready(function() {
+ var table = $('#example').DataTable({
+ fuzzySearch: {
+ rankColumn: 6
+ }
+ });
+ } );
} );
diff --git a/features/fuzzySearch/returnSearch.html b/features/fuzzySearch/returnSearch.html
index 7a403fd..23bf060 100644
--- a/features/fuzzySearch/returnSearch.html
+++ b/features/fuzzySearch/returnSearch.html
@@ -567,14 +567,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: {
- toggleSmart: true,
- rankColumn: 6,
- threshold: 0.5,
- returnSearch: false
- }
- });
+ $(document).ready(function() {
+ var table = $('#example').DataTable({
+ fuzzySearch: {
+ returnSearch: true
+ }
+ });
+ } );
} );
diff --git a/features/fuzzySearch/stateSaving.html b/features/fuzzySearch/stateSaving.html
index ba7a001..1d72e88 100644
--- a/features/fuzzySearch/stateSaving.html
+++ b/features/fuzzySearch/stateSaving.html
@@ -629,14 +629,16 @@ $(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: {
- toggleSmart: true,
- rankColumn: 6,
- threshold: 0.5,
- returnSearch: false
- }
- });
+ $(document).ready(function() {
+ var table = $('#example').DataTable({
+ fuzzySearch: {
+ rankColumn: 6,
+ threshold: true,
+ toggleSmart: true
+ },
+ stateSave: true
+ });
+ } );
} );
diff --git a/features/fuzzySearch/threshold.html b/features/fuzzySearch/threshold.html
index ab61ab1..99fd6d2 100644
--- a/features/fuzzySearch/threshold.html
+++ b/features/fuzzySearch/threshold.html
@@ -627,14 +627,14 @@ $(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: {
- toggleSmart: true,
- rankColumn: 6,
- threshold: 0.5,
- returnSearch: false
- }
- });
+ $(document).ready(function() {
+ var table = $('#example').DataTable({
+ fuzzySearch: {
+ rankColumn: 6,
+ threshold: 0.1
+ }
+ });
+ } );
} );
diff --git a/features/fuzzySearch/toggleSmart.html b/features/fuzzySearch/toggleSmart.html
index 17630b8..43a9c33 100644
--- a/features/fuzzySearch/toggleSmart.html
+++ b/features/fuzzySearch/toggleSmart.html
@@ -627,14 +627,14 @@ $(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: {
- toggleSmart: true,
- rankColumn: 6,
- threshold: 0.5,
- returnSearch: false
- }
- });
+ $(document).ready(function() {
+ var table = $('#example').DataTable({
+ fuzzySearch: {
+ rankColumn: 6,
+ toggleSmart: true
+ }
+ });
+ } );
} );