Skip to content

Commit

Permalink
Build pjax.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgrove committed Oct 18, 2011
1 parent a5da466 commit fe23a95
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build/pjax-base/pjax-base-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function getRoot() {
return segments.join('/');
}

// PjaxBase is a mixin for Controller.
// PjaxBase is a mixin for Router.
function PjaxBase() {}

PjaxBase.prototype = {
Expand Down Expand Up @@ -164,4 +164,4 @@ PjaxBase.ATTRS = {
Y.PjaxBase = PjaxBase;


}, '@VERSION@' ,{requires:['classnamemanager', 'controller', 'node-event-delegate']});
}, '@VERSION@' ,{requires:['classnamemanager', 'node-event-delegate', 'router']});
2 changes: 1 addition & 1 deletion build/pjax-base/pjax-base-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/pjax-base/pjax-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function getRoot() {
return segments.join('/');
}

// PjaxBase is a mixin for Controller.
// PjaxBase is a mixin for Router.
function PjaxBase() {}

PjaxBase.prototype = {
Expand Down Expand Up @@ -164,4 +164,4 @@ PjaxBase.ATTRS = {
Y.PjaxBase = PjaxBase;


}, '@VERSION@' ,{requires:['classnamemanager', 'controller', 'node-event-delegate']});
}, '@VERSION@' ,{requires:['classnamemanager', 'node-event-delegate', 'router']});
2 changes: 1 addition & 1 deletion build/pjax/pjax-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ YUI.add('pjax', function(Y) {
var EVT_ERROR = 'error',
EVT_LOAD = 'load';

Y.Pjax = Y.Base.create('pjax', Y.Controller, [Y.PjaxBase], {
Y.Pjax = Y.Base.create('pjax', Y.Router, [Y.PjaxBase], {
// -- Lifecycle Methods ----------------------------------------------------
initializer: function () {
this.publish(EVT_ERROR, {defaultFn: this._defCompleteFn});
Expand Down
2 changes: 1 addition & 1 deletion build/pjax/pjax-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/pjax/pjax.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ YUI.add('pjax', function(Y) {
var EVT_ERROR = 'error',
EVT_LOAD = 'load';

Y.Pjax = Y.Base.create('pjax', Y.Controller, [Y.PjaxBase], {
Y.Pjax = Y.Base.create('pjax', Y.Router, [Y.PjaxBase], {
// -- Lifecycle Methods ----------------------------------------------------
initializer: function () {
this.publish(EVT_ERROR, {defaultFn: this._defCompleteFn});
Expand Down

0 comments on commit fe23a95

Please sign in to comment.