mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-28 11:00:27 +00:00
d1f2c399ce
* Add documentation to various widget messages. The following widget messages now have documentation: * tm-edit-bitmap-operation * tm-edit-text-operation * tm-fold-all-tiddlers * tm-fold-other-tiddlers * tm-fold-tiddler * tm-unfold-all-tiddlers * tm-load-plugin-from-library * tm-load-plugin-library * tm-open-window * tm-scroll * Fixed alignment error.
26 lines
988 B
Plaintext
26 lines
988 B
Plaintext
caption: tm-load-plugin-library
|
|
created: 20160424235548387
|
|
modified: 20160425000427238
|
|
tags: Messages
|
|
title: WidgetMessage: tm-load-plugin-library
|
|
type: text/vnd.tiddlywiki
|
|
|
|
The `tm-load-plugin-library` message loads the specified plugin library and imports information about the contained plugins in temporary tiddlers.
|
|
|
|
|!Name |!Description |
|
|
|url |Url specifying the plugin library to be loaded. |
|
|
|infoTitlePrefix|Prefix to the temporary tiddlers being created, containing information about the plugins the plugin library offers. Defaults to <<.value "$:/temp/RemoteAssetInfo/">> |
|
|
|
|
!Example
|
|
|
|
The following snippet will load the official plugin library:
|
|
|
|
```
|
|
<$button>
|
|
<$action-sendmessage $message="tm-load-plugin-library" infoTitlePrefix="$:/temp/RemoteAssetInfo/" url="http://tiddlywiki.com/library/v5.1.11/index.html"/>
|
|
Load official plugin library
|
|
</$button>
|
|
```
|
|
|
|
The `tm-load-plugin-library` message is usually generated with the ButtonWidget and is handled by the core itself.
|