Commit 32357c15 authored by Klaus Wölfel's avatar Klaus Wölfel

UTSTUTT changes: update static version

parent 0bc5d2df
......@@ -68,9 +68,10 @@
<div data-role="controlgroup" data-type="horizontal" class="ui-btn-right">
<a data-icon="forward"
class="next_step_link ui-btn ui-icon-forward ui-btn-icon-right">Next Step</a>
class="next_step_link ui-btn ui-icon-forward ui-btn-icon-right">Continue</a>
<a data-icon="forward"
class="next_link ui-btn ui-icon-forward ui-btn-icon-right">Next</a>
</div>
</header>
......
......@@ -79,20 +79,37 @@
});
}
function getNextStepLink(gadget, portal_type, options) {
if (options.action === "view_machine_shift_spreadsheet") {
//if (options.action === "view_machine_shift_spreadsheet") {
if (options.action === "view") {
var forward_kw = {
action: "view_run_simulation",
action: "view_machine_shift_spreadsheet",
id: options.id
};
return gadget.aq_pleasePublishMyState(forward_kw);
} else {
return false;
} else if (options.action === "view_machine_shift_spreadsheet") {
var forward_kw1 = {
action: "view_operator_shift_spreadsheet",
id: options.id
};
return gadget.aq_pleasePublishMyState(forward_kw1);
} else if (options.action === "view_operator_shift_spreadsheet") {
var forward_kw2 = {
action: "view_wip_spreadsheet",
id: options.id
};
return gadget.aq_pleasePublishMyState(forward_kw2);
} else if (options.action === "view_wip_spreadsheet") {
var forward_kw3 = {
action: "view_run_simulation",
id: options.id
};
return gadget.aq_pleasePublishMyState(forward_kw3);
}
}
function getTitle(gadget, portal_type, options) {
var title;
if (portal_type === "Input Module") {
title = "Documents";
title = "Documentas";
} else if (portal_type === "Input") {
title = gadget.getDeclaredGadget("jio").push(function(jio_gadget) {
return jio_gadget.get({
......@@ -329,17 +346,25 @@
var button = gadget.props.element.getElementsByClassName("next_step_link")[0];
$(button).hide();
var idle_timer;
var stop_timer;
function resetTimer() {
clearTimeout(idle_timer);
idle_timer = setTimeout(function() {
$(button).show();
}, idle_seconds * 1e3);
}
function hideButton() {
clearTimeout(stop_timer);
stop_timer = setTimeout(function() {
$(button).hide();
}, idle_seconds2 * 1e3);
}
if (next_step_link !== false) {
button.href = next_step_link;
var idle_seconds = 10;
var idle_seconds = 5;
$(document.body).on("keydown click", resetTimer);
resetTimer();
var idle_seconds2 = 12;
$(document.body).on("keydown click", hideButton);
} else {
$(document.body).off("keydown click", resetTimer);
}
......
CACHE MANIFEST
# This manifest was generated by grunt-manifest HTML5 Cache Manifest Generator
# Time: Sun Apr 19 2015 23:09:42 GMT+0000 (GMT)
# Time: Mon Jun 01 2015 11:42:11 GMT+0000 (GMT)
CACHE:
dream/InputModule_viewAddDocumentDialog.js
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment