Sha256: c8dcff7eb1e69871058b8859f06892c7231ddcf73758118ad629d1a77033114f

Contents?: true

Size: 721 Bytes

Versions: 67

Compression:

Stored size: 721 Bytes

Contents

pageflow.History.HashAdapter = function() {
  var counter = 0;

  this.back = function() {
    if (counter > 0) {
      window.history.back();
      counter -= 1;
      return true;
    }
    return false;
  };

  this.pushState = function(state, title, hash) {
    if (window.location.hash !== hash) {
      counter += 1;
      window.location.hash = hash;
    }
  };

  this.replaceState = function(state, title, hash) {
    window.location.hash = hash;
  };

  this.state = function() {
    return {};
  };

  this.hash = function() {
    var match = window.location.href.match(/#(.*)$/);
    return match ? match[1] : '';
  };

  this.on = function(event, listener) {
    return $(window).on(event, listener);
  };
};

Version data entries

67 entries across 67 versions & 1 rubygems

Version Path
pageflow-14.5.2 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-15.0.2 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-15.0.1 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-15.0.0 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-14.5.1 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-14.5.0 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-15.0.0.rc2 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-15.0.0.rc1 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-15.0.0.beta4 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-15.0.0.beta3 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-14.4.0 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-15.0.0.beta2 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-15.0.0.beta1 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-14.3.0 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-14.2.1 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-14.2.0 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-14.1.1 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-14.1.0 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-14.0.0 app/assets/javascripts/pageflow/history/hash_adapter.js
pageflow-14.0.0.rc2 app/assets/javascripts/pageflow/history/hash_adapter.js