Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
cards
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Curtis Adam
cards
Commits
9ca1c688
Commit
9ca1c688
authored
Jun 24, 2019
by
Curtis Adam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove arsnovaApp code
parent
0cb7ad51
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
68 deletions
+0
-68
de.i18n.json
i18n/de.i18n.json
+0
-1
en.i18n.json
i18n/en.i18n.json
+0
-1
arsnovaApp.html
imports/ui/card/sidebar/item/arsnovaApp.html
+0
-19
arsnovaApp.js
imports/ui/card/sidebar/item/arsnovaApp.js
+0
-46
sidebar.js
imports/ui/card/sidebar/sidebar.js
+0
-1
No files found.
i18n/de.i18n.json
View file @
9ca1c688
...
@@ -1591,7 +1591,6 @@
...
@@ -1591,7 +1591,6 @@
"zoomTextReset"
:
"Zurücksetzen"
,
"zoomTextReset"
:
"Zurücksetzen"
,
"pomodoro"
:
"Zwischen Uhr und Timer wechseln"
,
"pomodoro"
:
"Zwischen Uhr und Timer wechseln"
,
"showHelp"
:
"Hilfe"
,
"showHelp"
:
"Hilfe"
,
"arsnovaApp"
:
"Befrage dein Publikum mit dem Audience-Response-System ARSnova auf arsnova.thm.de"
,
"arsnovaClick"
:
"Befrage dein Publikum mit arsnova.click, der spielbasierten Variante von ARSnova"
,
"arsnovaClick"
:
"Befrage dein Publikum mit arsnova.click, der spielbasierten Variante von ARSnova"
,
"arsnovaLite"
:
"Befrage dein Publikum mit dem Audience-Response-System ARSnova auf beta.arsnova.eu"
,
"arsnovaLite"
:
"Befrage dein Publikum mit dem Audience-Response-System ARSnova auf beta.arsnova.eu"
,
"hideSidebar"
:
"Verberge die Rand-Buttons"
,
"hideSidebar"
:
"Verberge die Rand-Buttons"
,
...
...
i18n/en.i18n.json
View file @
9ca1c688
...
@@ -1592,7 +1592,6 @@
...
@@ -1592,7 +1592,6 @@
"zoomTextReset"
:
"Zurücksetzen"
,
"zoomTextReset"
:
"Zurücksetzen"
,
"pomodoro"
:
"Zwischen Uhr und Timer wechseln"
,
"pomodoro"
:
"Zwischen Uhr und Timer wechseln"
,
"showHelp"
:
"Hilfe"
,
"showHelp"
:
"Hilfe"
,
"arsnovaApp"
:
"Befrage dein Publikum mit dem Audience-Response-System ARSnova auf arsnova.thm.de"
,
"arsnovaClick"
:
"Befrage dein Publikum mit arsnova.click, der spielbasierten Variante von ARSnova"
,
"arsnovaClick"
:
"Befrage dein Publikum mit arsnova.click, der spielbasierten Variante von ARSnova"
,
"arsnovaLite"
:
"Befrage dein Publikum mit dem Audience-Response-System ARSnova auf beta.arsnova.eu"
,
"arsnovaLite"
:
"Befrage dein Publikum mit dem Audience-Response-System ARSnova auf beta.arsnova.eu"
,
"hideSidebar"
:
"Verberge die Rand-Buttons"
,
"hideSidebar"
:
"Verberge die Rand-Buttons"
,
...
...
imports/ui/card/sidebar/item/arsnovaApp.html
deleted
100644 → 0
View file @
0cb7ad51
<template
name=
"cardSidebarItemArsnovaApp"
>
{{#if isCardsetOwner this._id}}
{{#unless isIOSSafari}}
<img
class=
"hidden-xs showArsnovaApp card-button btn cardHeaderItem"
data-type=
"cardNavigation"
src=
"/img/button/arsnova_app_v2.png"
title=
"{{_ "
card
.
tooltip
.
arsnovaApp
"}}"
>
{{/unless}}
{{/if}}
</template>
<template
name=
"arsnovaAppModal"
>
{{#unless isIOSSafari}}
<div
class=
"modal"
id=
"arsnovaAppModal"
tabindex=
"-1"
role=
"dialog"
>
<div
class=
"modal-dialog"
>
</div>
</div>
{{/unless}}
</template>
imports/ui/card/sidebar/item/arsnovaApp.js
deleted
100644 → 0
View file @
0cb7ad51
import
"
./arsnovaApp.html
"
;
import
{
Session
}
from
"
meteor/session
"
;
import
{
Template
}
from
"
meteor/templating
"
;
Session
.
setDefault
(
'
arsnovaAppModalActive
'
,
false
);
/*
* ############################################################################
* cardSidebarItemArsnovaApp
* ############################################################################
*/
Template
.
cardSidebarItemArsnovaApp
.
events
({
"
click .showArsnovaApp
"
:
function
()
{
$
(
'
#arsnovaAppModal
'
).
modal
(
'
show
'
);
}
});
Template
.
cardSidebarItemArsnovaApp
.
onCreated
(
function
()
{
Session
.
set
(
'
arsnovaAppModalActive
'
,
false
);
});
Template
.
cardSidebarItemArsnovaApp
.
onDestroyed
(
function
()
{
Session
.
set
(
'
arsnovaAppModalActive
'
,
false
);
});
/*
* ############################################################################
* arsnovaAppModal
* ############################################################################
*/
Template
.
arsnovaAppModal
.
onRendered
(
function
()
{
$
(
'
#arsnovaAppModal
'
).
on
(
'
hidden.bs.modal
'
,
function
()
{
$
(
'
.showArsnovaApp
'
).
attr
(
'
src
'
,
'
/img/button/arsnova_app_v2.png
'
);
$
(
'
.showArsnovaApp
'
).
removeClass
(
'
pressed
'
);
});
$
(
'
#arsnovaAppModal
'
).
on
(
'
shown.bs.modal
'
,
function
()
{
$
(
'
.showArsnovaApp
'
).
attr
(
'
src
'
,
'
/img/button/arsnova_app_pressed.png
'
);
$
(
'
.showArsnovaApp
'
).
addClass
(
'
pressed
'
);
if
(
!
Session
.
get
(
'
arsnovaAppModalActive
'
))
{
Session
.
set
(
'
arsnovaAppModalActive
'
,
true
);
$
(
'
#arsnovaAppModal .modal-dialog
'
).
html
(
'
<iframe id="arsnovaApp" width="600px" height="800px" frameborder="0" src="https://arsnova.thm.de/mobile/"></iframe>
'
);
}
});
});
imports/ui/card/sidebar/sidebar.js
View file @
9ca1c688
...
@@ -6,7 +6,6 @@ import "./sidebar.html";
...
@@ -6,7 +6,6 @@ import "./sidebar.html";
import
"
./item/aspectRatio.js
"
;
import
"
./item/aspectRatio.js
"
;
import
"
./item/arsnovaClick.js
"
;
import
"
./item/arsnovaClick.js
"
;
import
"
./item/arsnovaLite.js
"
;
import
"
./item/arsnovaLite.js
"
;
import
"
./item/arsnovaApp.js
"
;
import
"
./item/cardList.js
"
;
import
"
./item/cardList.js
"
;
import
"
./item/backToCardset.js
"
;
import
"
./item/backToCardset.js
"
;
import
"
./item/dictionary.js
"
;
import
"
./item/dictionary.js
"
;
...
...
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