aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/changetag.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2015-01-08 15:09:46 +0100
committerArthurHoaro <arthur@hoa.ro>2015-01-09 09:47:48 +0100
commitfe16b01edb80ac2f2212125fadba8358dff91b95 (patch)
treec19fbb34904a1c5148202d01fa723d29b0e1557d /tpl/changetag.html
parenta2d5ef2127881561bf359390fac2d8d336a37335 (diff)
downloadShaarli-fe16b01edb80ac2f2212125fadba8358dff91b95.tar.gz
Shaarli-fe16b01edb80ac2f2212125fadba8358dff91b95.tar.zst
Shaarli-fe16b01edb80ac2f2212125fadba8358dff91b95.zip
* removed the language attribute on the script element since it is obsolete and we can safely omit it.
* make QRCode JS works with IE : * behave as a normal link if canvas aren't supported (<=IE8) * default parameter values in JS aren't widely supported (see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters ), use this method instead: http://stackoverflow.com/a/148918/1484919 * dataset isn't supported in IE9 use getAttribute instead * addEventListener works with IE9+ and other browsers
Diffstat (limited to 'tpl/changetag.html')
-rw-r--r--tpl/changetag.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/tpl/changetag.html b/tpl/changetag.html
index 79fea9a9..fdfb0b37 100644
--- a/tpl/changetag.html
+++ b/tpl/changetag.html
@@ -12,11 +12,11 @@
12 <input type="text" name="totag" id="totag"> 12 <input type="text" name="totag" id="totag">
13 <input type="submit" name="renametag" value="Rename tag" class="bigbutton"> 13 <input type="submit" name="renametag" value="Rename tag" class="bigbutton">
14 &nbsp;&nbsp;or&nbsp; <input type="submit" name="deletetag" value="Delete tag" class="bigbutton" onClick="return confirmDeleteTag();"><br>(Case sensitive)</form> 14 &nbsp;&nbsp;or&nbsp; <input type="submit" name="deletetag" value="Delete tag" class="bigbutton" onClick="return confirmDeleteTag();"><br>(Case sensitive)</form>
15<script language="JavaScript">function confirmDeleteTag() { var agree=confirm("Are you sure you want to delete this tag from all links ?"); if (agree) return true ; else return false ; }</script> 15<script>function confirmDeleteTag() { var agree=confirm("Are you sure you want to delete this tag from all links ?"); if (agree) return true ; else return false ; }</script>
16</div> 16</div>
17{include="page.footer"} 17{include="page.footer"}
18{if="($GLOBALS['config']['OPEN_SHAARLI'] || isLoggedIn()) && empty($GLOBALS['disablejquery'])"} 18{if="($GLOBALS['config']['OPEN_SHAARLI'] || isLoggedIn()) && empty($GLOBALS['disablejquery'])"}
19<script language="JavaScript"> 19<script>
20$(document).ready(function() 20$(document).ready(function()
21{ 21{
22 $('#fromtag').autocomplete({source:'{$source}?ws=singletag',minLength:1}); 22 $('#fromtag').autocomplete({source:'{$source}?ws=singletag',minLength:1});