Fixed bug; Popover getting rendered multiple times and/or stuck.
This commit is contained in:
parent
6393e398c1
commit
15687b8609
1 changed files with 4 additions and 2 deletions
|
@ -3,11 +3,13 @@ class App.PopoverProvider
|
|||
@templateName = null # needs to be overrided
|
||||
@permission = 'ticket.agent'
|
||||
|
||||
@providers = {}
|
||||
|
||||
@providersConfigKey = 'PopoverProviders'
|
||||
|
||||
@registerProvider: (key, klass) ->
|
||||
# create hash on the fly to avoid issues with class inheritance
|
||||
if !@providers
|
||||
@providers = {}
|
||||
|
||||
@providers[key] = klass
|
||||
App.Config.set(key, klass, @providersConfigKey)
|
||||
|
||||
|
|
Loading…
Reference in a new issue