Skip to content

Commit 57b798e

Browse files
committed
comment fixing
1 parent 988bf7e commit 57b798e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

app/index.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,16 @@ module.exports = generators.Base.extend({
8181
var schema = this.fs.read(this.templatePath(this.addon.type + '/schema.json'));
8282
var form = this.fs.read(this.templatePath(this.addon.type + '/form.json'));
8383

84-
/* Just a fast and easy fix.. because current version isn't working */
84+
/* TODO: Just a fast and easy fix for now..
85+
*/
8586
form = JSON.parse(form);
8687
if (form[0].hasOwnProperty('type')) {
8788
form[0].type = this.addon.typeName;
8889
}
8990

9091
this.addon.files.base.forEach(function(file) {
91-
// what to inject in the test controller
92+
/* What to inject in the test controller
93+
*/
9294
var testModule = ['schemaForm'];
9395
var dest = file.replace('_', '.')
9496
.replace('module.js', this.addon.paramName + '.js');

0 commit comments

Comments
 (0)