This commit is contained in:
barisusakli
2015-06-10 15:56:43 -04:00
parent 40408eb7a1
commit 8ff7ba82c2
2 changed files with 6 additions and 1 deletions

View File

@@ -312,7 +312,8 @@ define('composer', [
};
if (data.mobile) {
ajaxify.go('compose', function() {
var qs = '?p=' + window.location.pathname.substring(1);
ajaxify.go('compose' + qs, function() {
renderComposer();
});
} else {

View File

@@ -129,6 +129,10 @@ Controllers.register = function(req, res, next) {
};
Controllers.compose = function(req, res, next) {
if (req.query.p && !res.locals.isAPI) {
return helpers.redirect(res, '/' + req.query.p);
}
res.render('composer', {});
};