Lines Matching refs:pjax
97 pjax(opts)
134 pjax($.extend({}, defaults, options))
158 function pjax(options) { function
159 options = $.extend(true, {}, $.ajaxSettings, pjax.defaults, options)
233 var currentVersion = (typeof $.pjax.defaults.version === 'function') ?
234 $.pjax.defaults.version() :
235 $.pjax.defaults.version
253 pjax.state = {
263 window.history.replaceState(pjax.state, container.title, container.url)
285 pjax.state.url = url.href
286 window.history.replaceState(pjax.state, container.title, url.href)
300 if (!pjax.state) {
301 pjax.state = {
309 window.history.replaceState(pjax.state, document.title)
313 var xhr = pjax.xhr
319 pjax.options = options
320 var xhr = pjax.xhr = $.ajax(options)
325 cachePush(pjax.state.id, context.clone().contents())
334 return pjax.xhr
348 return pjax($.extend(defaults, optionsFor(container, options)))
371 pjax.state = initialState
396 if (pjax.state) {
399 direction = pjax.state.id < state.id ? 'forward' : 'back'
403 cachePop(direction, pjax.state.id, container.clone().contents())
427 pjax.state = state
431 pjax(options)
715 while (cacheBackStack.length > pjax.defaults.maxCacheLength)
765 $.fn.pjax = fnPjax
766 $.pjax = pjax
767 $.pjax.enable = $.noop
768 $.pjax.disable = disable
769 $.pjax.click = handleClick
770 $.pjax.submit = handleSubmit
771 $.pjax.reload = pjaxReload
772 $.pjax.defaults = {
797 $.fn.pjax = function() { return this } function
798 $.pjax = fallbackPjax
799 $.pjax.enable = enable
800 $.pjax.disable = $.noop
801 $.pjax.click = $.noop
802 $.pjax.submit = $.noop
803 $.pjax.reload = function() { window.location.reload() }
815 $.support.pjax =
820 $.support.pjax ? enable() : disable()