-
Notifications
You must be signed in to change notification settings - Fork 1
/
wunderlist-get-lists.html
35 lines (32 loc) · 1.03 KB
/
wunderlist-get-lists.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<script type="text/javascript">
RED.nodes.registerType('wunderlist-get-lists',{
category: 'function',
color: '#E84228',
defaults: {
config: { type: 'wunderlist-config', required: true },
name: { value: '' }
},
inputs:1,
outputs:1,
icon: 'wunderlist-logo.png',
label: function() {
return this.name || 'get Wunderlist lists';
}
});
</script>
<script type="text/x-red" data-template-name="wunderlist-get-lists">
<div class="form-row">
<label for="node-input-config"><i class="fa fa-code"></i> Configuration</label>
<input type="text" id="node-input-config" placeholder="Configuration">
</div>
<div class="form-row">
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="wunderlist-get-lists">
<p>Get all lists for the active user</p>
<ul>
<li><code>msg.payload</code> will be set to an array of list items</li>
</ul>
</script>