datatables-search
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -30,3 +30,4 @@ (function (global, factory) { | ||
$datatable.search(e.srcElement.value).draw(); | ||
var value = e.srcElement ? e.srcElement.value : e.target.value; | ||
$datatable.search(value).draw(); | ||
}); | ||
@@ -33,0 +34,0 @@ }); |
@@ -30,3 +30,4 @@ (function (global, factory) { | ||
$datatable.search(e.srcElement.value).draw(); | ||
var value = e.srcElement ? e.srcElement.value : e.target.value; | ||
$datatable.search(value).draw(); | ||
}); | ||
@@ -33,0 +34,0 @@ }); |
@@ -24,4 +24,5 @@ /* globals xController, jQuery */ | ||
$datatable.search(e.srcElement.value).draw(); | ||
const value = e.srcElement ? e.srcElement.value : e.target.value; | ||
$datatable.search(value).draw(); | ||
}); | ||
}); |
{ | ||
"name": "datatables-search", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Search component for datatables", | ||
@@ -5,0 +5,0 @@ "main": "dist/datatables-search.js", |
@@ -8,3 +8,3 @@ # Datatables Search | ||
<span class="input-group-addon"><i class="fa fa-search" aria-hidden="true"></i></span> | ||
<input type="text" class="form-control" placeholder="Search..." aria-controls="datatable-id"> | ||
<input type="text" class="form-control" placeholder="Search…" aria-controls="datatable-id"> | ||
</div> | ||
@@ -11,0 +11,0 @@ </div> |
@@ -24,4 +24,5 @@ /* globals xController, jQuery */ | ||
$datatable.search(e.srcElement.value).draw(); | ||
const value = e.srcElement ? e.srcElement.value : e.target.value; | ||
$datatable.search(value).draw(); | ||
}); | ||
}); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17314
323