no message
This commit is contained in:
parent
6fdb2d993c
commit
b1d2a11b93
@ -6,7 +6,7 @@
|
|||||||
// YouTrack: http://qoomon.myjetbrains.com/youtrack/dashboard
|
// YouTrack: http://qoomon.myjetbrains.com/youtrack/dashboard
|
||||||
|
|
||||||
var global = {};
|
var global = {};
|
||||||
global.version = "4.3.2";
|
global.version = "4.3.3";
|
||||||
global.issueTrackingUrl = "https://github.com/qoomon/Jira-Issue-Card-Printer";
|
global.issueTrackingUrl = "https://github.com/qoomon/Jira-Issue-Card-Printer";
|
||||||
global.isDev = document.currentScript == null;
|
global.isDev = document.currentScript == null;
|
||||||
global.isProd = !global.isDev;
|
global.isProd = !global.isDev;
|
||||||
@ -92,6 +92,7 @@
|
|||||||
|
|
||||||
// restore UI state
|
// restore UI state
|
||||||
jQuery("#scaleRange").val(settings.scale);
|
jQuery("#scaleRange").val(settings.scale);
|
||||||
|
jQuery("#scaleRange").parent().find("output").val(settings.scale);
|
||||||
jQuery("#rowCount").val(settings.rowCount);
|
jQuery("#rowCount").val(settings.rowCount);
|
||||||
jQuery("#columnCount").val(settings.colCount);
|
jQuery("#columnCount").val(settings.colCount);
|
||||||
|
|
||||||
|
|||||||
@ -19,7 +19,7 @@
|
|||||||
<div style="float: left; display: inline;"><input id="rowCount" type="text" class="text" maxlength="1" style="width: 10px; margin-right:5px;" value="2"/>Page Grid</div>
|
<div style="float: left; display: inline;"><input id="rowCount" type="text" class="text" maxlength="1" style="width: 10px; margin-right:5px;" value="2"/>Page Grid</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="float: left; margin-right:10px; padding-right: 3px; display: inline; -webkit-appearance: default">
|
<div style="float: left; margin-right:10px; padding-right: 3px; display: inline; -webkit-appearance: default">
|
||||||
<form onchange="amount.value=scaleRange.value">
|
<form oninput="amount.value=scaleRange.value.toFixed(1)">
|
||||||
<input type="range" id="scaleRange" min="-1.0" max="1.0" step="0.1" value="0.0" style="width: 80px; position: relative; top: 2px; margin-right:5px;" />
|
<input type="range" id="scaleRange" min="-1.0" max="1.0" step="0.1" value="0.0" style="width: 80px; position: relative; top: 2px; margin-right:5px;" />
|
||||||
<output name="amount" for="scaleRange"></output> Scale</form>
|
<output name="amount" for="scaleRange"></output> Scale</form>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user