mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
By adding #small to the end of the link, the footer is gone and navigating out is disabled
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
var Channel = {
|
var Channel = {
|
||||||
init: function() {
|
init: function() {
|
||||||
|
if(window.location.hash == "#small") {
|
||||||
|
small_player = true;
|
||||||
|
document.querySelector("footer").style.display = "none";
|
||||||
|
}
|
||||||
if(client) {
|
if(client) {
|
||||||
Helper.addClass(".tabs", "hide");
|
Helper.addClass(".tabs", "hide");
|
||||||
Helper.removeClass("#wrapper", "tabs_height");
|
Helper.removeClass("#wrapper", "tabs_height");
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ try {
|
|||||||
_VERSION = 6;
|
_VERSION = 6;
|
||||||
}
|
}
|
||||||
var startTime = 0;
|
var startTime = 0;
|
||||||
|
var small = false;
|
||||||
var full_playlist;
|
var full_playlist;
|
||||||
var hostMode = false;
|
var hostMode = false;
|
||||||
var soundcloud_enabled = true;
|
var soundcloud_enabled = true;
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ try {
|
|||||||
var soundcloud_enabled = true;
|
var soundcloud_enabled = true;
|
||||||
var local_new_channel = false;
|
var local_new_channel = false;
|
||||||
var sc_need_initialization = false;
|
var sc_need_initialization = false;
|
||||||
|
var small_player = false;
|
||||||
var hiddenPlaylist = false;
|
var hiddenPlaylist = false;
|
||||||
var videoSource;
|
var videoSource;
|
||||||
var dynamicListeners = {};
|
var dynamicListeners = {};
|
||||||
@@ -1467,7 +1468,10 @@ function addDynamicListeners() {
|
|||||||
|
|
||||||
addListener("click", ".brand-logo-navigate", function(event){
|
addListener("click", ".brand-logo-navigate", function(event){
|
||||||
this.preventDefault();
|
this.preventDefault();
|
||||||
|
if(small_player) {
|
||||||
|
window.open(window.location.origin + window.location.pathname, "_blank");
|
||||||
|
return;
|
||||||
|
}
|
||||||
window.history.pushState("to the frontpage!", "Title", "/");
|
window.history.pushState("to the frontpage!", "Title", "/");
|
||||||
Channel.onepage_load();
|
Channel.onepage_load();
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user