Skip to content
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.

Commit

Permalink
fixes #208 - debug template: falsely named caption
Browse files Browse the repository at this point in the history
  • Loading branch information
gruppjo committed Jul 15, 2015
1 parent 1b3ae5d commit fd9f257
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion template/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var MGenerator = yeoman.generators.NamedBase.extend({
this.template('_template.html', folder + this.fileName + '.html');
}
else if (this.options.template === 'debug') {
this.template('debug.html', folder + this.fileName + '.html');
this.template('_debug.html', folder + this.fileName + '.html');
}
else if (this.options.template === 'list-detail') {
this.template('list-detail.html', folder + this.fileName + '.html');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<ion-view view-title="tabs module">
<ion-view view-title="<%= moduleName %> debug">
<!-- do you want padding? -->
<ion-content class="padding">

Expand Down

0 comments on commit fd9f257

Please sign in to comment.