view app/assets/javascripts/zp.hash_magic.js @ 326:9193eb99eaf0

Fix name.
author edogawaconan <me@myconan.net>
date Mon, 07 Apr 2014 15:56:58 +0900
parents e855e58d137e
children 4b91c0c1938c
line wrap: on
line source

//= require zp.formatter
(function($) {
  window.zp.hash_magic = {
    load_hash: function() {
      var
        format = window.location.hash.slice(1),
        tab_link = function(fmt) {
                     return zp.formatter.links().filter("[href='#" + fmt + "']")
                   }
      if(!tab_link(format).length) format = "pl"
      tab_link(format).click()
    },
    set_hash: function(e) {
      if (typeof e !== "undefined") {
        if (zp.formatter.links().filter(e.target).length === 0) return
        else e.preventDefault()
      }
      var
        format = zp.formatter.current(),
        newpath = window.location.pathname
      if (format !== "pl") { newpath += "#" + format }
      history.replaceState(null, "", newpath)
    },
    init: function() {
      if (!$("#paste").length) return
      this.load_hash()
      if (history.replaceState) {
        this.set_hash()
        $(document).on('click', $.proxy(this.set_hash, this))
      }
    }
  }
})(jQuery)