Modules: Difference between revisions

From Cumulus Wiki
Jump to navigationJump to search
m
mNo edit summary
 
== Commandline parameters (v7 and up) ==
 
To have modules work properly with the commandline parameters introduced in version 7 of CUtils, you need to use a script in your own index file:
 
To have modules work properly with the commandline parameters introduced in version 7 of CUtils, you need to use athe scriptruntime inlibrary yourfor own index file:''CumulusUtils''
<pre>
<script src='lib/cumulusutils.js'></script>
<script>
const urlParams = new URLSearchParams(window.location.search);
</script>
</pre>
This library is generated with the website command separately with the CUlib command. <br>
It has it's [[CumulusUtils Runtime Library|own entry in the wiki]].
 
You can also use - i.s.o. the scriptlibrary above - thea runtimescript libraryin foryour ''CumulusUtils'':own HTML file:
<pre>
<script>
<script src='lib/cumulusutils.js'></script>
const urlParams = new URLSearchParams(window.location.search);
</script>
</pre>
This library is currently only generated with the website command (which you can run even if you don't use the website) but in future it will be possible to generate it separately with an additional command. It will then get it's own entry in the wiki.
 
[[Category:CumulusUtils]]

Navigation menu