File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 366
366
}
367
367
```
368
368
369
- Note: 下記のコメントをコードの上部に入れることで [ jshint] ( http://www.jshint.com/ ) のwarningsを避けることができます。 しかし関数がアッパーケースの場合には不要です。規約的にはそれはコンストラクタであり、Angularではコントローラに当たります。
369
+ Note: コメントをコードの上部に入れることで [ jshint] ( http://www.jshint.com/ ) のwarningsを避けることができます。 しかし関数がアッパーケースの場合には不要です。規約的にはそれはコンストラクタであり、Angularではコントローラに当たります。
370
370
371
371
``` javascript
372
372
/* jshint validthis: true */
1263
1263
console .log (' LINK: vm.max = %s' , vm .max );
1264
1264
}
1265
1265
` ` `
1266
- z
1266
+
1267
1267
###### [Style [Y076](#style-y076)]
1268
1268
1269
1269
- ` controller as` シンタックスをディレクティブで用い、外側のscopeをディレクティブのコントローラのscopeにバインドしたいときは ` bindToController = true ` を使って下さい。
2476
2476
` ` `
2477
2477
/src/client/app/customers/customer-detail.controller.js
2478
2478
/customer-detail.controller.spec.js
2479
+ /customers.controller.js
2479
2480
/customers.controller.spec.js
2480
- /customers.controller-detail.spec.js
2481
2481
/customers.module.js
2482
2482
/customers.route.js
2483
2483
/customers.route.spec.js
2724
2724
"disallowCommaBeforeLineBreak": null,
2725
2725
"disallowDanglingUnderscores": null,
2726
2726
"disallowEmptyBlocks": null,
2727
- "disallowMultipleLineStrings": null,
2728
2727
"disallowTrailingComma": null,
2729
2728
"requireCommaBeforeLineBreak": null,
2730
2729
"requireDotNotation": null,
You can’t perform that action at this time.
0 commit comments