Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
55a86c81
Commit
55a86c81
authored
Jul 01, 2015
by
Klaus Wölfel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
USTUTT changes for "next" button
parent
9e5b8c81
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
10 deletions
+43
-10
dream/platform/src/dream/index.html
dream/platform/src/dream/index.html
+2
-1
dream/platform/src/dream/index.js
dream/platform/src/dream/index.js
+41
-9
No files found.
dream/platform/src/dream/index.html
View file @
55a86c81
...
...
@@ -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>
...
...
dream/platform/src/dream/index.js
View file @
55a86c81
...
...
@@ -115,22 +115,43 @@
}
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
);
//else {
//return false;
}
}
function
getTitle
(
gadget
,
portal_type
,
options
)
{
var
title
;
if
(
portal_type
===
"
Input Module
"
)
{
title
=
"
Documents
"
;
title
=
"
Document
a
s
"
;
}
else
if
(
portal_type
===
"
Input
"
)
{
title
=
gadget
.
getDeclaredGadget
(
"
jio
"
)
.
push
(
function
(
jio_gadget
)
{
...
...
@@ -501,16 +522,27 @@
.
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
*
1000
);
}
function
hideButton
()
{
clearTimeout
(
stop_timer
);
stop_timer
=
setTimeout
(
function
()
{
$
(
button
).
hide
()
},
idle_seconds2
*
1000
);
}
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
);
//resetTimer();
}
else
{
$
(
document
.
body
).
off
(
'
keydown click
'
,
resetTimer
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment