Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vovayatsyuk committed Jan 7, 2025
1 parent be28790 commit c4f5c02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions collections/_guides/custom-javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ Create `breeze_default.xml` layout update file with the following code inside:
<item name="items" xsi:type="array">
<item name="js-from-theme-folder" xsi:type="array">
<item name="path" xsi:type="string">js/breeze/my-custom-file</item>
<item name="autload" xsi:type="boolean">true</item>
<item name="autoload" xsi:type="boolean">true</item>
</item>
<item name="js-from-module-folder" xsi:type="array">
<item name="path" xsi:type="string">Vendor_Module/js/breeze/my-custom-file</item>
<item name="autload" xsi:type="boolean">true</item>
<item name="autoload" xsi:type="boolean">true</item>
</item>
</item>
</item>
Expand Down
4 changes: 2 additions & 2 deletions collections/_guides/integration-tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ Use `breeze_default.xml` layout update to add new js file:
<!-- Adding file from custom module -->
<item name="module-js-file" xsi:type="array">
<item name="path" xsi:type="string">Vendor_Module/js/breeze/new-js-file</item>
<item name="autload" xsi:type="boolean">true</item>
<item name="autoload" xsi:type="boolean">true</item>
</item>

<!-- Adding file from custom theme -->
<item name="theme-js-file" xsi:type="array">
<item name="path" xsi:type="string">js/breeze/new-js-file</item>
<item name="autload" xsi:type="boolean">true</item>
<item name="autoload" xsi:type="boolean">true</item>
</item>
</item>
</item>
Expand Down

0 comments on commit c4f5c02

Please sign in to comment.