Notes/src/public/app/doc_notes/launchbar_script_launcher.html

13 lines
440 B
HTML
Raw Normal View History

2022-12-22 19:02:41 +01:00
<p>Script launcher can execute a script (code note) connected via <code>~script</code> relation.</p>
2022-08-08 23:13:31 +02:00
2022-12-22 19:02:41 +01:00
<ol>
<li><code>script</code> - relation to the script note which should be executed upon launcher activation</li>
<li><code>keyboardLauncher</code> - optional, pressing the keyboard launcher will activate the launcher</li>
</ol>
2022-11-27 23:43:25 +01:00
<h4>Example script</h4>
<pre>
alert("Current note is " + api.getActiveContextNote().title);
</pre>