Removed not needed forEach(). IE8 is not supporting this.
This commit is contained in:
parent
dd82093ca0
commit
28b5bb6cf7
2 changed files with 4 additions and 7 deletions
|
@ -528,7 +528,7 @@ class App.ControllerForm extends App.Controller
|
|||
# build options list
|
||||
_buildOptionList: (list, attribute) ->
|
||||
|
||||
list.forEach( (item) =>
|
||||
for item in list
|
||||
|
||||
# if active or if active doesn't exist
|
||||
if item.active || !( 'active' of item )
|
||||
|
@ -542,7 +542,6 @@ class App.ControllerForm extends App.Controller
|
|||
value: item.id,
|
||||
note: item.note,
|
||||
}
|
||||
)
|
||||
|
||||
# execute filter
|
||||
_filterOption: (attribute) ->
|
||||
|
|
|
@ -157,10 +157,9 @@ class App.Navigation extends App.Controller
|
|||
if !roles && item.role
|
||||
match = _.include( item.role, 'Anybody' )
|
||||
if roles
|
||||
roles.forEach( (role) =>
|
||||
for role in roles
|
||||
if !match
|
||||
match = _.include(item.role, role.name)
|
||||
)
|
||||
match = _.include( item.role, role.name )
|
||||
|
||||
if match
|
||||
level1.push item
|
||||
|
@ -178,10 +177,9 @@ class App.Navigation extends App.Controller
|
|||
if !roles
|
||||
match = _.include( itemSub.role, 'Anybody' )
|
||||
if roles
|
||||
roles.forEach( (role) =>
|
||||
for role in roles
|
||||
if !match
|
||||
match = _.include( itemSub.role, role.name )
|
||||
)
|
||||
|
||||
if match
|
||||
dropdown[ item.parent ].push itemSub
|
||||
|
|
Loading…
Reference in a new issue