support HTML-mode in Pushover node #467 (#468)

* support HTML-mode in Pushover node #467

* drop option to set whether Pushover uses HTML mode based on incoming node msg
This commit is contained in:
cowchimp
2018-08-13 13:17:51 +03:00
committed by Dave Conway-Jones
parent b94e3eb5fd
commit 771a49a8b0
2 changed files with 11 additions and 1 deletions

View File

@@ -48,6 +48,11 @@
<label for="node-input-url_title"><i class="fa fa-anchor"></i> URL title</label>
<input type="text" id="node-input-url_title" placeholder="optional url title">
</div>
<div class="form-row">
<label for="node-input-html"><i class="fa fa-code"></i> HTML</label>
<input type="checkbox" id="node-input-html" style="display:inline-block; width:15px; vertical-align:baseline;" />
<span>Message is <a href="https://pushover.net/api#html" target="_blank">HTML formatted</a></span>
</div>
<div class="form-row">
<label for="node-input-deviceid"><i class="fa fa-user"></i> User key</label>
<input type="text" id="node-input-deviceid">
@@ -86,6 +91,7 @@
sound: {value:""},
url: {value:""},
url_title: {value:""},
html: {value:false}
},
credentials: {
deviceid: {type:"text"},