mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-20 04:53:39 +02:00
Hide datalist for unsupported browsers.
This commit is contained in:
@@ -30,8 +30,8 @@
|
|||||||
.filtering-buttons
|
.filtering-buttons
|
||||||
datalist(id='searchFields')
|
datalist(id='searchFields')
|
||||||
select(name='searchFields')
|
select(name='searchFields')
|
||||||
option(ng-repeat='column in columns', ng-value='column.name + ": "', ng-bind='columnDefinitions[column.name].title | translate')
|
option(ng-repeat='column in columns', ng-value='column.name + ": "',
|
||||||
|
ng-bind='columnDefinitions[column.name].title | translate')
|
||||||
input(type='search', results='5', autosave='deviceFilter'
|
input(type='search', results='5', autosave='deviceFilter'
|
||||||
name='deviceFilter', ng-model='deviceFilter', ng-change='applyFilter(deviceFilter)',
|
name='deviceFilter', ng-model='deviceFilter', ng-change='applyFilter(deviceFilter)',
|
||||||
ng-model-options='{debounce: 150}'
|
ng-model-options='{debounce: 150}'
|
||||||
|
|||||||
@@ -384,3 +384,8 @@ a.active {
|
|||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Hide datalist for non-supporting browsers */
|
||||||
|
datalist {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user