For firefox lower 35 we need to set a class to hide own dropdown images whole file can be removed after dropping firefox 34 and lower support.
This commit is contained in:
parent
c873789385
commit
7533bdeea5
1 changed files with 10 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
class FFlt35
|
||||
constructor: ->
|
||||
data = App.Browser.detection()
|
||||
if data.browser is 'Firefox' && data.version && data.version < 35
|
||||
|
||||
# for firefox lower 35 we need to set a class to hide own dropdown images
|
||||
# whole file can be removed after dropping firefox 34 and lower support
|
||||
$('html').addClass('ff-lt-35')
|
||||
|
||||
App.Config.set( 'aaa_ff-lt-35', FFlt35, 'Widgets' )
|
Loading…
Reference in a new issue