Skip to content

Commit

Permalink
Fixed issues around changes made in 0.5 core Mojito
Browse files Browse the repository at this point in the history
  • Loading branch information
add0n committed Dec 4, 2012
1 parent 01f00cb commit 1ee3af3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mojito-pnm/mojits/LightboxMojit/controller.server.js
Expand Up @@ -38,4 +38,4 @@ YUI.add('LightboxMojit', function (Y, NAME) {
}
};

}, '0.0.1', {requires: ['dump']});
}, '0.0.1', {requires: ['mojito-params-addon', 'dump']});
2 changes: 1 addition & 1 deletion mojito-pnm/mojits/MasterMojit/controller.server.js
Expand Up @@ -22,4 +22,4 @@ YUI.add('MasterMojit', function (Y, NAME) {
}
};

}, '0.0.1', {requires: ['dump']});
}, '0.0.1', {requires: ['mojito-composite-addon', 'dump']});
4 changes: 2 additions & 2 deletions mojito-pnm/mojits/PhotosMojit/controller.server.js
Expand Up @@ -22,7 +22,7 @@ YUI.add('PhotosMojit', function (Y, NAME) {
index: function(actionContext) {
var page = 0,
start,
model = actionContext.models.PhotosMojitModel;
model = actionContext.models.get('PhotosMojitModel');

if (actionContext.params.hasOwnProperty('merged')) {
page = actionContext.params.merged('page');
Expand Down Expand Up @@ -52,4 +52,4 @@ YUI.add('PhotosMojit', function (Y, NAME) {
}
};

}, '0.0.1', {requires: ['dump']});
}, '0.0.1', {requires: ['mojito-models-addon', 'mojito-params-addon', 'dump']});

0 comments on commit 1ee3af3

Please sign in to comment.