view app/assets/javascripts/zp.hash_magic.coffee @ 381:bfc5ad3f7dc5

Use rails' builtin jquery instead of external one.
author nanaya <me@myconan.net>
date Sun, 07 Jun 2015 02:51:58 +0900
parents 5a4d31e97937
children
line wrap: on
line source

#= require zp.formatter
window.zp.hash_magic =
  load_hash: ->
    format = window.location.hash.slice(1)
    tab_link = (fmt) -> zp.formatter.links().filter("[href='##{fmt}']")

    format = "pl" unless tab_link(format).length
    tab_link(format).click()

  set_hash: (e) ->
    format = zp.formatter.current()
    newpath = window.location.pathname
    newpath += "##{format}" if (format != "pl")
    history.replaceState null, "", newpath

  init: ->
    return unless $("#paste").length
    @load_hash()
    if (history.replaceState)
      @set_hash()
      zp.formatter.links().on("shown.bs.tab", this.set_hash)