@kumologica/sdk 3.4.0-beta4 → 3.4.0-beta5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/src/app/main-process/modal-nodelibrary.js +2 -1
- package/src/app/ui/editor-client/public/red/red.js +4 -1
- package/src/app/ui/editor-client/public/red/red.min.js +1 -1
- package/src/app/ui/editor-client/public/red/style.min.css +1 -1
- package/src/app/ui/editor-client/src/js/modals/modal-node-library.js +2 -1
- package/src/app/ui/editor-client/src/js/ui/palette-explorer.js +2 -0
- package/src/app/ui/editor-client/src/sass/tabs.scss +0 -1
- package/src/app/ui/editor-client/src/sass/workspace.scss +1 -1
- package/src/app/ui/editor-client/templates/index.mst +1 -1
|
@@ -246,7 +246,8 @@ RED.modalNodeLibrary = (function () {
|
|
|
246
246
|
// Attach click event to launch the node library from the sidebar-footer
|
|
247
247
|
$('#launch-node-library').click((event) => {
|
|
248
248
|
event.preventDefault();
|
|
249
|
-
window.__kumologica.
|
|
249
|
+
window.__kumologica.electron.shell.openExternal('https://kumologica.com/nodes/index.html');
|
|
250
|
+
// window.__kumologica.main.dispatch('show-node-library-modal', null);
|
|
250
251
|
});
|
|
251
252
|
}
|
|
252
253
|
return {
|