Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/tagbangers/wallride
Browse files Browse the repository at this point in the history
  • Loading branch information
ogawa-takeshi committed Mar 2, 2017
2 parents d343791 + c472481 commit 8d00b13
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>
<groupId>org.wallride</groupId>
<artifactId>wallride</artifactId>
<version>1.0.0.M12</version>
<version>1.0.0.M13</version>
<packaging>pom</packaging>
<name>WallRide</name>
<description>CMS for developers of principles</description>
Expand Down Expand Up @@ -80,7 +80,7 @@
<dependency>
<groupId>org.wallride</groupId>
<artifactId>wallride-core</artifactId>
<version>1.0.0.M12</version>
<version>1.0.0.M13</version>
</dependency>

<!-- Spring -->
Expand Down
2 changes: 1 addition & 1 deletion wallride-bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.wallride</groupId>
<artifactId>wallride-parent</artifactId>
<version>1.0.0.M12</version>
<version>1.0.0.M13</version>
<relativePath>../wallride-parent/pom.xml</relativePath>
</parent>
<artifactId>wallride-bootstrap</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion wallride-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.wallride</groupId>
<artifactId>wallride</artifactId>
<version>1.0.0.M12</version>
<version>1.0.0.M13</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>wallride-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ <h1 th:text="${title}?:#{AddNewArticle}">Add New Article</h1>
form.attr('action', action);
form.attr('target', '_blank');
$(':input[name="body"]', form).val($('#wr-page-content :input[name="body"]').froalaEditor('html.get'));
$('body').append(form);
form.submit();
form.remove();
});
});
</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ <h1 th:text="${title}?:#{AddNewPage}">Add New Page</h1>
form.attr('action', action);
form.attr('target', '_blank');
$(':input[name="body"]', form).val($('#wr-page-content :input[name="body"]').froalaEditor('html.get'));
$('body').append(form);
form.submit();
form.remove();
});
});
</script>
Expand Down
4 changes: 2 additions & 2 deletions wallride-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>org.wallride</groupId>
<artifactId>wallride-parent</artifactId>
<version>1.0.0.M12</version>
<version>1.0.0.M13</version>
<packaging>pom</packaging>
<name>WallRide Parent</name>
<description>CMS for developers of principles</description>
Expand Down Expand Up @@ -68,7 +68,7 @@
<dependency>
<groupId>org.wallride</groupId>
<artifactId>wallride-core</artifactId>
<version>1.0.0.M12</version>
<version>1.0.0.M13</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion wallride-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.wallride</groupId>
<artifactId>wallride</artifactId>
<version>1.0.0.M12</version>
<version>1.0.0.M13</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>wallride-tools</artifactId>
Expand Down

0 comments on commit 8d00b13

Please sign in to comment.