-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated help link, embedded player per site (#892)
space to trick timeout exception Removed switch statement Add myplayer var via Ansible template Update default myplayer for local dev environment
- Loading branch information
Showing
6 changed files
with
83 additions
and
70 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
provision/roles/cadasta/production/templates/inline-manual-player
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
Inline Manual Player, v2.34.1 | ||
http://inlinemanual.com/ | ||
*/ | ||
|
||
// User tracking | ||
|
||
window.inlineManualTracking = { | ||
uid: "{{ user.id }}", | ||
username: "{{ user.username }}" | ||
} | ||
|
||
// Embed correct player for site - myplayer variable | ||
|
||
var myplayer = "{{ myplayer }}"; | ||
|
||
!function(){var e=document.createElement("script"),t=document.getElementsByTagName("script")[0];e.async=1,e.src="https://inlinemanual.com/embed/player." + myplayer + ".js",e.charset="UTF-8",t.parentNode.insertBefore(e,t)}(); |