Searched defs:HistoryBase (Results 1 - 3 of 3) sorted by relevance

/yui3/src/history/js/
H A Dhistory-base.js20 * @class HistoryBase
55 function HistoryBase() { class
59 Y.augment(HistoryBase, Y.EventTarget, null, null, {
94 HistoryBase.NAME = 'historyBase';
105 HistoryBase.SRC_ADD = SRC_ADD;
116 HistoryBase.SRC_REPLACE = SRC_REPLACE;
129 HistoryBase.html5 = !!(win.history && win.history.pushState &&
152 HistoryBase.nativeHashChange = ('onhashchange' in win || 'onhashchange' in doc) &&
155 Y.mix(HistoryBase.prototype, {
159 * Initializes this HistoryBase instanc
[all...]
H A Dhistory-hash.js11 * @extends HistoryBase
13 * @param {Object} config (optional) Configuration object. See the HistoryBase
17 var HistoryBase = Y.HistoryBase, variable
35 Y.extend(HistoryHash, HistoryBase, {
81 HistoryHash[src === HistoryBase.SRC_REPLACE ? 'replaceHash' : 'setHash'](newHash);
403 if (HistoryBase.nativeHashChange) {
457 (!HistoryBase.html5 || !Y.HistoryHTML5))) {
H A Dhistory-html5.js42 * @extends HistoryBase
47 var HistoryBase = Y.HistoryBase, variable
53 SRC_REPLACE = HistoryBase.SRC_REPLACE;
59 Y.extend(HistoryHTML5, HistoryBase, {
88 * Overrides HistoryBase's <code>_storeState()</code> and pushes or replaces
171 HistoryBase.html5)) {

Completed in 27 milliseconds