Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo fix and doc update #1616

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Lowcoder provides some JavaScript built-in libraries for use.
Built-in Libraries can be used directly everywhere where you can use JavaScript.

```
// loadash
// lodash
return _.chunk(['a', 'b', 'c', 'd'], 2);
// => [['a', 'b'], ['c', 'd']]

Expand Down Expand Up @@ -107,11 +107,11 @@ You can check popular CDNs if they host your desired library as a minified packa

### Import / bind at the app level

Navigate to the settings page and then click the plus sign **+** under the **JavaScript library** tab. Paste the **library** link and click **Add New**. Lowcoder will now check, if the external library will be compatible and securely usable.
Navigate to the Individualization page and then click the plus sign **+** under the **JavaScript library** tab. Paste the **library** link and click **Add New**. Lowcoder will now check, if the external library will be compatible and securely usable.

You can also click the download icon to quickly download any recommended JS library.

<figure><img src="../../.gitbook/assets/App Editor External Libraries.png" alt=""><figcaption><p>Bind an external JS Library to an individual App</p></figcaption></figure>
<figure><img src="../../.gitbook/assets/Individualization JavaScript Libraries.png" alt=""><figcaption><p>Bind an external JS Library to an individual App</p></figcaption></figure>

Now, you can create a JS query and insert code.

Expand Down
Loading