effective_datatables 3.0.10 → 3.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26947cf7b14ada26ae6389b6a0af0f8daca8dfef
|
4
|
+
data.tar.gz: 97f74782767e176a67369fa9773a36019f29cab7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9369d9157d9dd721d46f8bb8bba0edde23717e509960a7aa9a264db62ad31b2df0790305b117aa2683feebcecde90be8cd390cb7ee9f273ae3256b3f12c6170c
|
7
|
+
data.tar.gz: 314be80b76661a21f5a037e9950282daa54536410c62b9acbcb03ff203e64eeb83a04281a38376fb82a84958eb6826260bfc3a264ed69a8fe8b400459e8c404b
|
@@ -173,7 +173,7 @@ initializeDataTables = ->
|
|
173
173
|
|
174
174
|
if simple
|
175
175
|
init_options['dom'] = "<'row'<'col-sm-12'tr>>" # Just show the table
|
176
|
-
datatable.addClass('sort-hidden')
|
176
|
+
datatable.addClass('sort-hidden search-hidden')
|
177
177
|
|
178
178
|
# Let's actually initialize the table now
|
179
179
|
table = datatable.dataTable(jQuery.extend(init_options, input_js_options))
|
@@ -42,6 +42,8 @@ table.dataTable.sort-hidden thead .sorting { background-image: none; }
|
|
42
42
|
table.dataTable.sort-hidden thead .sorting_asc { background-image: none; }
|
43
43
|
table.dataTable.sort-hidden thead .sorting_desc { background-image: none; }
|
44
44
|
|
45
|
+
table.dataTable.search-hidden thead .form-group { display: none; }
|
46
|
+
|
45
47
|
// Filter bar
|
46
48
|
table.dataTable .form-group { width: 100%; margin-left: 0px; margin-right: 0px; }
|
47
49
|
table.dataTable select { width: 100%; }
|