Merge pull request #37 from stragu/patch-1
change default mode to "both" when clicking edit
This commit is contained in:
commit
ee725dc58c
1 changed files with 2 additions and 2 deletions
|
@ -427,7 +427,7 @@ function publishNoteActions (req, res, next) {
|
||||||
actionDownload(req, res, note)
|
actionDownload(req, res, note)
|
||||||
break
|
break
|
||||||
case 'edit':
|
case 'edit':
|
||||||
res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id)))
|
res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id)) + '?both')
|
||||||
break
|
break
|
||||||
default:
|
default:
|
||||||
res.redirect(config.serverURL + '/s/' + note.shortid)
|
res.redirect(config.serverURL + '/s/' + note.shortid)
|
||||||
|
@ -441,7 +441,7 @@ function publishSlideActions (req, res, next) {
|
||||||
var action = req.params.action
|
var action = req.params.action
|
||||||
switch (action) {
|
switch (action) {
|
||||||
case 'edit':
|
case 'edit':
|
||||||
res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id)))
|
res.redirect(config.serverURL + '/' + (note.alias ? note.alias : models.Note.encodeNoteId(note.id)) + '?both')
|
||||||
break
|
break
|
||||||
default:
|
default:
|
||||||
res.redirect(config.serverURL + '/p/' + note.shortid)
|
res.redirect(config.serverURL + '/p/' + note.shortid)
|
||||||
|
|
Loading…
Reference in a new issue