Skip to content

Commit

Permalink
Trim page name and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
felixoi committed Feb 28, 2018
1 parent 3b5b284 commit 3355dbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "ore"

version := "1.5.7"
version := "1.5.8"

lazy val `ore` = (project in file(".")).enablePlugins(PlayScala)

Expand Down
2 changes: 1 addition & 1 deletion public/javascripts/pageEdit.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ $(function() {
});

$('#continue-page').click(function() {
var pageName = $('#page-name').val();
var pageName = $('#page-name').val().trim();
var url = '/' + PROJECT_OWNER + '/' + PROJECT_SLUG + '/pages/' + slugify(pageName) + '/edit';
var parent = $('.select-parent').find(':selected');
var parentId = -1;
Expand Down

0 comments on commit 3355dbd

Please sign in to comment.