Sha256: 3539c9913ddd85083a4ac2e604383ce2ce7ce2f1d7b3694e7c4da443b1222292

Contents?: true

Size: 1006 Bytes

Versions: 6

Compression:

Stored size: 1006 Bytes

Contents

$ ->
  # Preloading all background images from CSS files.
  $.preloadCssImages()

  # We obviously have javascript enabled.
  $('html').removeClass('no-js')

  # Initialize the GUI.
  Alchemy.GUI.init()

  # Fade all growl notifications.
  if $('#flash_notices').length > 0
    Alchemy.Growler.fade()

  # Add observer for please wait overlay.
  $('a.please_wait, #main_navi a.main_navi_entry, div.button_with_label form :submit, #sub_navigation .subnavi_tab a, .pagination a')
    .not('*[data-alchemy-confirm], #subnav_additions .subnavi_tab button')
    .click ->
      Alchemy.pleaseWaitOverlay()

  # Hack for enabling tab focus for <a>'s styled as button.
  $('a.button').attr({tabindex: 0})

  # Locale select handler
  $('select#change_locale').on 'change', (e) ->
    url = Alchemy.current_url
    delimiter = if url.match(/\?/) then '&' else '?'
    window.location = url + delimiter + 'locale=' + $(this).val()

  # Attaches the image loader on all images
  Alchemy.ImageLoader('#main_content')

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
alchemy_cms-2.6.3 app/assets/javascripts/alchemy/alchemy.onload.js.coffee
alchemy_cms-2.6.2.1 app/assets/javascripts/alchemy/alchemy.onload.js.coffee
alchemy_cms-2.6.2 app/assets/javascripts/alchemy/alchemy.onload.js.coffee
alchemy_cms-2.6.1 app/assets/javascripts/alchemy/alchemy.onload.js.coffee
alchemy_cms-2.6.0 app/assets/javascripts/alchemy/alchemy.onload.js.coffee
alchemy_cms-2.6.0.rc5 app/assets/javascripts/alchemy/alchemy.onload.js.coffee