andreluizreis
5/12/2017 - 7:01 PM

Scroll, schedule, init in Controller

Scroll, schedule, init in Controller

#------------- Anchor to Auto Top Up ---------------
  # //dashboard/credits?anchor=auto_top_up_anchor
  queryParams: [
    'anchor'
  ]
  anchor: null

  scrollToAnchor: Ember.on 'init', ->
    Ember.run.scheduleOnce 'afterRender', this, =>
      anchor = 'auto_top_up_anchor'
      if anchor is @get('anchor')
        Ember.$('html, body').animate({
          scrollTop: Ember.$('#auto-top-up-anchor').offset().top
        }, 600)

#-----------------------------------------------------