Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
R
redeleitsystem
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
redl
redeleitsystem
Commits
f4e37e87
Commit
f4e37e87
authored
Oct 08, 2015
by
Robin Sonnabend
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added next-speaker-shortcut.
parent
dd06fbae
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
61 additions
and
2 deletions
+61
-2
static/js/nextbutton.js
static/js/nextbutton.js
+46
-0
templates/layout.html
templates/layout.html
+5
-0
templates/speech_index.html
templates/speech_index.html
+9
-1
templates/update.js
templates/update.js
+1
-1
No files found.
static/js/nextbutton.js
0 → 100644
View file @
f4e37e87
var
keyhash
=
""
;
var
changehash
=
false
;
var
notificationArea
;
var
timeout
;
function
hashkey
(
e
)
{
return
e
.
keyCode
+
"
;
"
+
e
.
charCode
;
}
function
clickNextSpeaker
()
{
var
rows
=
document
.
getElementById
(
"
next-speaker-table
"
).
rows
;
if
(
rows
.
length
>
1
)
{
var
row
=
rows
[
1
];
var
a
=
row
.
children
[
2
].
childNodes
[
1
];
a
.
click
();
}
}
window
.
onkeypress
=
function
(
e
)
{
if
(
changehash
)
{
keyhash
=
hashkey
(
e
);
changehash
=
false
;
sessionStorage
[
"
keyhash
"
]
=
keyhash
;
notificationArea
.
innerHTML
=
"
Key has been set.
"
;
timeout
=
window
.
setTimeout
(
function
()
{
notificationArea
.
innerHTML
=
""
;
},
5000
);
}
else
{
if
(
hashkey
(
e
)
==
keyhash
)
{
clickNextSpeaker
();
}
}
};
function
setkeyhash
()
{
changehash
=
true
;
notificationArea
.
innerHTML
=
"
Please click the key.
"
;
window
.
clearTimeout
(
timeout
);
}
var
nextbuttoncachedonloadfunction
=
window
.
onload
;
window
.
onload
=
function
()
{
nextbuttoncachedonloadfunction
();
if
(
sessionStorage
[
"
keyhash
"
])
{
keyhash
=
sessionStorage
[
"
keyhash
"
];
}
notificationArea
=
document
.
getElementById
(
"
rede-layout-notification
"
);
};
templates/layout.html
View file @
f4e37e87
...
...
@@ -28,6 +28,8 @@
{% include "content_time.html" %}
</span>
<div
class=
"mdl-layout-spacer"
></div>
<span
id=
"rede-layout-notification"
class=
"rede-layout-title"
></span>
<div
class=
"mdl-layout-spacer"
></div>
<button
class=
"mdl-button mdl-js-button mdl-js-ripple-effet mdl-button--icon"
id=
"hdrbtn"
>
<i
class=
"material-icons"
>
more_vert
</i>
</button>
...
...
@@ -83,6 +85,9 @@
<a
class=
"mdl-navigation__link"
href=
"{{ url_for("
speech.show
")
}}"
><i
class=
"mdl-color-text--blue-grey-400 material-icons"
role=
"presentation"
>
announcement
</i>
Pending speakers
</a>
{% if current_user.is_authenticated() and "admin" in current_user.roles %}
<a
class=
"mdl-navigation__link"
href=
"{{ url_for("
admin.index
")
}}"
><i
class=
"mdl-color-text--blue-grey-400 material-icons"
role=
"presentation"
>
computer
</i>
Administration
</a>
{% block additional_sidelinks %}
<!-- put your additional sidelinks here -->
{% endblock %}
{% endif %}
</nav>
</div>
...
...
templates/speech_index.html
View file @
f4e37e87
...
...
@@ -2,9 +2,17 @@
{% from "macros.html" import render_form %}
{% block title %}Statements{% endblock %}
{% block additional_js %}
<script
src=
"{{ url_for('static', filename='js/nextbutton.js') }}"
async
></script>
{% endblock %}
{% block additional_sidelinks %}
<a
href=
"#"
class=
"mdl-navigation__link"
onclick=
"setkeyhash()"
>
Set Next Key
</a>
{% endblock %}
{% block content %}
{% for statements, add_form, event in meta %}
<table
class=
"mdl-data-table mdl-js-table mdl-shadow--2dp mdl-cell mdl-cell--6-col mdl-cell--4-col-tablet mdl-cell--4-col-phone sortable"
>
<table
id=
"next-speaker-table"
class=
"mdl-data-table mdl-js-table mdl-shadow--2dp mdl-cell mdl-cell--6-col mdl-cell--4-col-tablet mdl-cell--4-col-phone sortable"
>
<thead>
<tr>
<th
class=
"mdl-data-table__cell--non-numeric"
>
Speaker
</th>
...
...
templates/update.js
View file @
f4e37e87
...
...
@@ -27,5 +27,5 @@ var {{ prefix }}f = window.onload;
window
.
onload
=
function
()
{
{{
prefix
}}
f
();
window
.
setInterval
({{
prefix
}}
request
,
1000
*
{{
update_interval
}});
}
}
;
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