Skip to content

Commit 7ce6105

Browse files
committed
minor #76 Fix README: registering lazy controllers in bootstrap.js (jmsche)
This PR was merged into the main branch. Discussion ---------- Fix README: registering lazy controllers in bootstrap.js Commits ------- 869519d Fix README: registering lazy controllers in bootstrap.js
2 parents 28cf851 + 869519d commit 7ce6105

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@ const app = startStimulusApp(require.context(
266266
));
267267

268268
// the normal way to manually register controllers
269-
application.register('clipboard', Clipboard)
270-
application.register('autocomplete', Autocomplete)
269+
app.register('clipboard', Clipboard);
270+
app.register('autocomplete', Autocomplete);
271271

272272
export { app };
273273
```

0 commit comments

Comments
 (0)