From e75fd4d8fe3ffd6d364e67070578e798bda2df28 Mon Sep 17 00:00:00 2001 From: Anonish Date: Fri, 6 Feb 2015 20:42:13 -0600 Subject: [PATCH 1/9] Update quick-reply.js apparently 600 was still not allowing QR to load on portrait mode. 400 seems to work fine --- js/quick-reply.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/quick-reply.js b/js/quick-reply.js index 48d7864e..c5738eec 100644 --- a/js/quick-reply.js +++ b/js/quick-reply.js @@ -115,7 +115,7 @@ #quick-reply td.recaptcha-response {\ padding: 0 0 1px 0;\ }\ - @media screen and (max-width: 600px) {\ + @media screen and (max-width: 400px) {\ #quick-reply {\ display: none !important;\ }\ @@ -369,7 +369,7 @@ $(window).ready(function() { if (settings.get('hide_at_top', true)) { $(window).scroll(function() { - if ($(this).width() <= 600) + if ($(this).width() <= 400) return; if ($(this).scrollTop() < $origPostForm.offset().top + $origPostForm.height() - 100) $postForm.fadeOut(100); @@ -391,7 +391,7 @@ }; $(window).on('cite', function(e, id, with_link) { - if ($(this).width() <= 600) + if ($(this).width() <= 400) return; show_quick_reply(); if (with_link) { @@ -446,7 +446,7 @@ $('.quick-reply-btn').hide(); $(window).scroll(function() { - if ($(this).width() <= 600) + if ($(this).width() <= 400) return; if ($(this).scrollTop() < $('form[name="post"]:first').offset().top + $('form[name="post"]:first').height() - 100) $('.quick-reply-btn').fadeOut(100); From 1df89e2a87bc7997c6929a9df4c138f1316f9d08 Mon Sep 17 00:00:00 2001 From: Anonish Date: Sun, 8 Feb 2015 01:04:41 -0600 Subject: [PATCH 2/9] changes to expand-video.js --- js/expand-video.js | 85 +++++++++++++++++++++++++++++++--------------- 1 file changed, 58 insertions(+), 27 deletions(-) diff --git a/js/expand-video.js b/js/expand-video.js index 6d04b858..aa56ca64 100644 --- a/js/expand-video.js +++ b/js/expand-video.js @@ -21,6 +21,7 @@ function setupVideo(thumb, url) { function unexpand() { if (expanded) { expanded = false; + hovering = false; if (video.pause) video.pause(); videoContainer.style.display = "none"; thumb.style.display = "inline"; @@ -34,8 +35,7 @@ function setupVideo(thumb, url) { hovering = false; if (video.pause) video.pause(); videoContainer.style.display = "none"; - video.style.maxWidth = "inherit"; - video.style.maxHeight = "inherit"; + video.style.display = "none"; } } @@ -56,6 +56,7 @@ function setupVideo(thumb, url) { videoHide.addEventListener("click", unexpand, false); videoContainer = document.createElement("div"); + videoContainer.id = "#expandedVideo"; videoContainer.style.paddingLeft = "15px"; videoContainer.style.display = "none"; videoContainer.appendChild(videoHide); @@ -113,6 +114,7 @@ function setupVideo(thumb, url) { function expand2() { video.style.maxWidth = "100%"; video.style.maxHeight = window.innerHeight + "px"; + var bottom = video.getBoundingClientRect().bottom; if (bottom > window.innerHeight) { window.scrollBy(0, bottom - window.innerHeight); @@ -124,34 +126,64 @@ function setupVideo(thumb, url) { // Hovering over thumbnail displays video thumb.addEventListener("mouseover", function(e) { - if (setting("videohover")) { - getVideo(); - expanded = false; - hovering = true; + if (setting("videohover")) { + getVideo(); + expanded = false; + hovering = true; - var docRight = document.documentElement.getBoundingClientRect().right; - var thumbRight = thumb.querySelector("img, video").getBoundingClientRect().right; - var maxWidth = docRight - thumbRight - 20; - if (maxWidth < 250) maxWidth = 250; + var pageURL = window.location.href; + var jsonURL = pageURL.replace(/\.html$/, ".json"); + var vidName = video.src.split('/').pop().split(".").shift(); + + $.getJSON(jsonURL, function (result) { + $.each(result.posts, function(){ + if (vidName==this.tim) { - video.style.position = "fixed"; - video.style.right = "0px"; - video.style.top = "0px"; - var docRight = document.documentElement.getBoundingClientRect().right; - var thumbRight = thumb.querySelector("img, video").getBoundingClientRect().right; - video.style.maxWidth = maxWidth + "px"; - video.style.maxHeight = "100%"; - video.style.pointerEvents = "none"; + var vidX = e.clientX; + var vidY = e.clientY; + var vidWidth = this.w; + var vidHeight = this.h; + var vidAspect = vidHeight / vidWidth; + var windowWidth = $(window).width(); + var windowHeight = $(window).height(); + var totalWidth = windowWidth - vidX; + var totalHeight = totalWidth*vidAspect; + var maxWidth = totalWidth - 20; + if (maxWidth < 250) { maxWidth = 250; } + var maxHeight = maxWidth * vidAspect; + var vidTop = vidY; + var vidBottom; - video.style.display = "inline"; - videoHide.style.display = "none"; - videoContainer.style.display = "inline"; - videoContainer.style.position = "fixed"; + if (vidWidth > windowWidth) { + video.style.maxWidth = maxWidth+"px"; + video.style.maxHeight = maxHeight+"px"; + vidBottom = vidTop + maxHeight; + } else { + video.style.maxWidth = vidWidth+"px"; + video.style.maxHeight = vidHeight+"px"; + vidBottom = vidTop + vidHeight; + } - video.muted = (setting("videovolume") == 0); - video.volume = setting("videovolume"); - video.controls = false; - video.play(); + if (vidBottom > windowHeight) { vidTop -= vidBottom-windowHeight; } + + videoContainer.style.position = "fixed"; + videoContainer.style.display = "block"; + + videoHide.style.display = "none"; + + video.style.left = vidX+"px"; + video.style.top = vidTop+"px"; + video.style.pointerEvents = "none"; + video.style.display = "block"; + video.style.position = "fixed"; + video.muted = (setting("videovolume") == 0); + video.volume = setting("videovolume"); + video.controls = false; + video.play(); + + } + }); + }); } }, false); @@ -241,4 +273,3 @@ onready(function(){ observer.observe(document.body, {childList: true, subtree: true}); } }); - From d2faa943b0a1ecec8856b7b526f463482e9ff733 Mon Sep 17 00:00:00 2001 From: Anonish Date: Sun, 8 Feb 2015 16:36:52 -0600 Subject: [PATCH 3/9] hover video fixes On index pages, restore original behavior (temp fix) On thread pages, fixed multiple file posts so all posts hover - still need to fix width for multiple posts as the ones on the right side of the page extend beyond the page (on original method they become tiny) - fix catalog long term i am thinking of just redoing the whole hover file (unless someone else does first). --- js/expand-video.js | 72 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 62 insertions(+), 10 deletions(-) diff --git a/js/expand-video.js b/js/expand-video.js index aa56ca64..538e018a 100644 --- a/js/expand-video.js +++ b/js/expand-video.js @@ -130,15 +130,67 @@ function setupVideo(thumb, url) { getVideo(); expanded = false; hovering = true; - - var pageURL = window.location.href; - var jsonURL = pageURL.replace(/\.html$/, ".json"); - var vidName = video.src.split('/').pop().split(".").shift(); - $.getJSON(jsonURL, function (result) { - $.each(result.posts, function(){ - if (vidName==this.tim) { + var vidName = video.src.split('/').pop().split(".").shift(); + var isMod = (window.location.pathname.split("/")[1]=="mod.php"); + var thisBoard = isMod?window.location.href.split("/")[4]:window.location.pathname.split("/")[1]; + var pageType = window.active_page; + var pageURL = isMod?window.location.href:window.location.pathname; + var jsonURL; + + var thisThread; + var thisPost; + + if (pageType==="thread") { + jsonURL = pageURL.replace(/\.html$/, ".json"); + } else + if (pageType==="index"){ + var thisPage = isMod?window.location.href.split("/")[5].split(".")[0]:window.location.pathname.split("/")[2].split(".")[0]; + if (thisPage=="index") { thisPage="0"; } else { thisPage-=1;} + jsonURL = pageURL.replace(/[a-z0-9]+.html$/, thisPage+".json"); + } + + $.getJSON(jsonURL, function (thread) { + $this = thread; + if(typeof thread.threads != "undefined" && thread.threads != null && thread.threads.length > 0){ + console.log("index page"); + var docRight = document.documentElement.getBoundingClientRect().right; + var thumbRight = thumb.querySelector("img, video").getBoundingClientRect().right; + var maxWidth = docRight - thumbRight - 20; + if (maxWidth < 250) maxWidth = 250; + video.style.position = "fixed"; + video.style.right = "0px"; + video.style.top = "0px"; + var docRight = document.documentElement.getBoundingClientRect().right; + var thumbRight = thumb.querySelector("img, video").getBoundingClientRect().right; + video.style.maxWidth = maxWidth + "px"; + video.style.maxHeight = "100%"; + video.style.pointerEvents = "none"; + + video.style.display = "inline"; + videoHide.style.display = "none"; + videoContainer.style.display = "inline"; + videoContainer.style.position = "fixed"; + video.muted = (setting("videovolume") == 0); + video.volume = setting("videovolume"); + video.controls = false; + video.play(); + } + else { + $.each($this.posts, function(){ + var tim = this.tim; + var fileNum = vidName.split('-').pop(); + if(typeof this.extra_files != "undefined" && this.extra_files != null && this.extra_files.length > 0){ + console.log("extra file exists"); + $.each(this.extra_files, function() { + if (vidName==this.tim){ + tim = this.tim; + } + }); + } + console.log("tim = "+tim); + if (vidName==tim) { var vidX = e.clientX; var vidY = e.clientY; var vidWidth = this.w; @@ -153,7 +205,7 @@ function setupVideo(thumb, url) { var maxHeight = maxWidth * vidAspect; var vidTop = vidY; var vidBottom; - + if (vidWidth > windowWidth) { video.style.maxWidth = maxWidth+"px"; video.style.maxHeight = maxHeight+"px"; @@ -181,8 +233,8 @@ function setupVideo(thumb, url) { video.controls = false; video.play(); - } - }); + } + }); } //else*/ }); } }, false); From 02708219d3aea65bffe40f6bc893e08dda1290ec Mon Sep 17 00:00:00 2001 From: Anonish Date: Sun, 8 Feb 2015 18:39:01 -0600 Subject: [PATCH 4/9] hover video fixes - fixes width on thread pages when opening video at bottom - works better on index pages, but still need to get actual width of video --- js/expand-video.js | 174 +++++++++++++++++++++++++++------------------ 1 file changed, 103 insertions(+), 71 deletions(-) diff --git a/js/expand-video.js b/js/expand-video.js index 538e018a..0e9ddcbb 100644 --- a/js/expand-video.js +++ b/js/expand-video.js @@ -149,28 +149,54 @@ function setupVideo(thumb, url) { if (thisPage=="index") { thisPage="0"; } else { thisPage-=1;} jsonURL = pageURL.replace(/[a-z0-9]+.html$/, thisPage+".json"); } - + $.getJSON(jsonURL, function (thread) { $this = thread; if(typeof thread.threads != "undefined" && thread.threads != null && thread.threads.length > 0){ - console.log("index page"); - var docRight = document.documentElement.getBoundingClientRect().right; - var thumbRight = thumb.querySelector("img, video").getBoundingClientRect().right; - var maxWidth = docRight - thumbRight - 20; - if (maxWidth < 250) maxWidth = 250; - video.style.position = "fixed"; - video.style.right = "0px"; - video.style.top = "0px"; - var docRight = document.documentElement.getBoundingClientRect().right; - var thumbRight = thumb.querySelector("img, video").getBoundingClientRect().right; - video.style.maxWidth = maxWidth + "px"; - video.style.maxHeight = "100%"; - video.style.pointerEvents = "none"; - - video.style.display = "inline"; - videoHide.style.display = "none"; - videoContainer.style.display = "inline"; + + var vidX = e.clientX; + var vidY = e.clientY; + var windowWidth = $(window).width(); + var windowHeight = $(window).height(); + var vidWidth = windowWidth - vidX; + var vidHeight = windowHeight - vidY; + var vidAspect = vidHeight / vidWidth; + + var totalWidth = windowWidth - vidX; + var totalHeight = totalWidth*vidAspect; + var maxWidth = totalWidth - 20; + if (maxWidth < 250) { maxWidth = 250; } + var maxHeight = maxWidth * vidAspect; + var vidTop = vidY; + var vidBottom; + var vidRight; + + if (vidWidth > windowWidth) { + video.style.maxWidth = maxWidth+"px"; + video.style.maxHeight = maxHeight+"px"; + vidBottom = vidTop + maxHeight; + vidRight = vidX+maxWidth - 20; + } else { + video.style.maxWidth = vidWidth+"px"; + video.style.maxHeight = vidHeight+"px"; + vidBottom = vidTop + vidHeight; + vidRight = vidX+vidWidth - 20; + } + + if (vidBottom > windowHeight) { vidTop -= vidBottom-windowHeight; } videoContainer.style.position = "fixed"; + videoContainer.style.display = "block"; + videoHide.style.display = "none"; + if (vidRight > windowWidth) { + video.style.left = vidX-(vidRight-windowWidth)+"px"; + } + else { + video.style.left = vidX+"px"; + } + video.style.top = vidTop+"px"; + video.style.pointerEvents = "none"; + video.style.display = "block"; + video.style.position = "fixed"; video.muted = (setting("videovolume") == 0); video.volume = setting("videovolume"); video.controls = false; @@ -178,63 +204,69 @@ function setupVideo(thumb, url) { } else { - $.each($this.posts, function(){ - var tim = this.tim; - var fileNum = vidName.split('-').pop(); - if(typeof this.extra_files != "undefined" && this.extra_files != null && this.extra_files.length > 0){ - console.log("extra file exists"); - $.each(this.extra_files, function() { - if (vidName==this.tim){ - tim = this.tim; - } - }); - } - console.log("tim = "+tim); - if (vidName==tim) { - var vidX = e.clientX; - var vidY = e.clientY; - var vidWidth = this.w; - var vidHeight = this.h; - var vidAspect = vidHeight / vidWidth; - var windowWidth = $(window).width(); - var windowHeight = $(window).height(); - var totalWidth = windowWidth - vidX; - var totalHeight = totalWidth*vidAspect; - var maxWidth = totalWidth - 20; - if (maxWidth < 250) { maxWidth = 250; } - var maxHeight = maxWidth * vidAspect; - var vidTop = vidY; - var vidBottom; - - if (vidWidth > windowWidth) { - video.style.maxWidth = maxWidth+"px"; - video.style.maxHeight = maxHeight+"px"; - vidBottom = vidTop + maxHeight; - } else { - video.style.maxWidth = vidWidth+"px"; - video.style.maxHeight = vidHeight+"px"; - vidBottom = vidTop + vidHeight; + $.each($this.posts, function(){ + var tim = this.tim; + var fileNum = vidName.split('-').pop(); + if(typeof this.extra_files != "undefined" && this.extra_files != null && this.extra_files.length > 0){ + $.each(this.extra_files, function() { + if (vidName==this.tim){ + tim = this.tim; + } + }); } + if (vidName==tim) { + var vidX = e.clientX; + var vidY = e.clientY; + var vidWidth = this.w; + var vidHeight = this.h; + var vidAspect = vidHeight / vidWidth; + var windowWidth = $(window).width(); + var windowHeight = $(window).height(); + var totalWidth = windowWidth - vidX; + var totalHeight = totalWidth*vidAspect; + var maxWidth = totalWidth - 20; + if (maxWidth < 250) { maxWidth = 250; } + var maxHeight = maxWidth * vidAspect; + var vidTop = vidY; + var vidBottom; + var vidRight; + if (vidWidth > windowWidth) { + video.style.maxWidth = maxWidth+"px"; + video.style.maxHeight = maxHeight+"px"; + vidBottom = vidTop + maxHeight; + vidRight = maxWidth+vidX; + } else { + video.style.maxWidth = vidWidth+"px"; + video.style.maxHeight = vidHeight+"px"; + vidBottom = vidTop + vidHeight; + vidRight = vidWidth+vidX; + } + if (vidBottom > windowHeight) { + vidTop -= vidBottom-windowHeight; + } - if (vidBottom > windowHeight) { vidTop -= vidBottom-windowHeight; } - - videoContainer.style.position = "fixed"; - videoContainer.style.display = "block"; + videoContainer.style.position = "fixed"; + videoContainer.style.display = "block"; - videoHide.style.display = "none"; + videoHide.style.display = "none"; - video.style.left = vidX+"px"; - video.style.top = vidTop+"px"; - video.style.pointerEvents = "none"; - video.style.display = "block"; - video.style.position = "fixed"; - video.muted = (setting("videovolume") == 0); - video.volume = setting("videovolume"); - video.controls = false; - video.play(); - - } - }); } //else*/ + if (vidRight > windowWidth) { + video.style.left = vidX-(vidRight-windowWidth)+"px"; + } + else { + video.style.left = vidX+"px"; + } + video.style.top = vidTop+"px"; + video.style.pointerEvents = "none"; + video.style.display = "block"; + video.style.position = "fixed"; + video.muted = (setting("videovolume") == 0); + video.volume = setting("videovolume"); + video.controls = false; + video.play(); + } + }); + } //else*/ }); } }, false); From 78cc03c2041b31590be90a952e1b43ff2d2ae4b4 Mon Sep 17 00:00:00 2001 From: anonish Date: Sun, 8 Feb 2015 21:36:33 -0600 Subject: [PATCH 5/9] Updating expand-video.js --- inc/template.php | 3 +- js/expand-video.js | 171 +++++++++++++++++++++++++++++++++++++-------- 2 files changed, 145 insertions(+), 29 deletions(-) diff --git a/inc/template.php b/inc/template.php index b0d7bfb2..2049b004 100644 --- a/inc/template.php +++ b/inc/template.php @@ -22,7 +22,8 @@ function load_twig() { $loader = new Twig_Loader_Filesystem($config['dir']['template']); $loader->setPaths($config['dir']['template']); $twig = new Twig_Environment($loader, array( - 'autoescape' => false, + 'autoescape' => false, + 'auto_reload' => true, 'cache' => is_writable('templates') || (is_dir('templates/cache') && is_writable('templates/cache')) ? "{$config['dir']['template']}/cache" : false, 'debug' => $config['debug'] diff --git a/js/expand-video.js b/js/expand-video.js index 6d04b858..56fc3654 100644 --- a/js/expand-video.js +++ b/js/expand-video.js @@ -21,6 +21,7 @@ function setupVideo(thumb, url) { function unexpand() { if (expanded) { expanded = false; + hovering = false; if (video.pause) video.pause(); videoContainer.style.display = "none"; thumb.style.display = "inline"; @@ -34,8 +35,7 @@ function setupVideo(thumb, url) { hovering = false; if (video.pause) video.pause(); videoContainer.style.display = "none"; - video.style.maxWidth = "inherit"; - video.style.maxHeight = "inherit"; + video.style.display = "none"; } } @@ -56,6 +56,7 @@ function setupVideo(thumb, url) { videoHide.addEventListener("click", unexpand, false); videoContainer = document.createElement("div"); + videoContainer.id = "#expandedVideo"; videoContainer.style.paddingLeft = "15px"; videoContainer.style.display = "none"; videoContainer.appendChild(videoHide); @@ -113,6 +114,7 @@ function setupVideo(thumb, url) { function expand2() { video.style.maxWidth = "100%"; video.style.maxHeight = window.innerHeight + "px"; + var bottom = video.getBoundingClientRect().bottom; if (bottom > window.innerHeight) { window.scrollBy(0, bottom - window.innerHeight); @@ -124,34 +126,148 @@ function setupVideo(thumb, url) { // Hovering over thumbnail displays video thumb.addEventListener("mouseover", function(e) { - if (setting("videohover")) { - getVideo(); - expanded = false; - hovering = true; + if (setting("videohover")) { + getVideo(); + expanded = false; + hovering = true; + + var vidName = video.src.split('/').pop().split(".").shift(); + var isMod = (window.location.pathname.split("/")[1]=="mod.php"); + var thisBoard = isMod?window.location.href.split("/")[4]:window.location.pathname.split("/")[1]; + var pageType = window.active_page; + var pageURL = isMod?window.location.href:window.location.pathname; + var jsonURL; + + var thisThread; + var thisPost; + + if (pageType==="thread") { + jsonURL = pageURL.replace(/\.html$/, ".json"); + } else + if (pageType==="index"){ + var thisPage = isMod?window.location.href.split("/")[5].split(".")[0]:window.location.pathname.split("/")[2].split(".")[0]; + if (thisPage=="index") { thisPage="0"; } else { thisPage-=1;} + jsonURL = pageURL.replace(/[a-z0-9]+.html$/, thisPage+".json"); + } - var docRight = document.documentElement.getBoundingClientRect().right; - var thumbRight = thumb.querySelector("img, video").getBoundingClientRect().right; - var maxWidth = docRight - thumbRight - 20; - if (maxWidth < 250) maxWidth = 250; + $.getJSON(jsonURL, function (thread) { + $this = thread; + if(typeof thread.threads != "undefined" && thread.threads != null && thread.threads.length > 0){ - video.style.position = "fixed"; - video.style.right = "0px"; - video.style.top = "0px"; - var docRight = document.documentElement.getBoundingClientRect().right; - var thumbRight = thumb.querySelector("img, video").getBoundingClientRect().right; - video.style.maxWidth = maxWidth + "px"; - video.style.maxHeight = "100%"; - video.style.pointerEvents = "none"; + var vidX = e.clientX; + var vidY = e.clientY; + var windowWidth = $(window).width(); + var windowHeight = $(window).height(); + var vidWidth = windowWidth - vidX; + var vidHeight = windowHeight - vidY; + var vidAspect = vidHeight / vidWidth; - video.style.display = "inline"; - videoHide.style.display = "none"; - videoContainer.style.display = "inline"; - videoContainer.style.position = "fixed"; + var totalWidth = windowWidth - vidX; + var totalHeight = totalWidth*vidAspect; + var maxWidth = totalWidth - 20; + if (maxWidth < 250) { maxWidth = 250; } + var maxHeight = maxWidth * vidAspect; + var vidTop = vidY; + var vidBottom; + var vidRight; - video.muted = (setting("videovolume") == 0); - video.volume = setting("videovolume"); - video.controls = false; - video.play(); + if (vidWidth > windowWidth) { + video.style.maxWidth = maxWidth+"px"; + video.style.maxHeight = maxHeight+"px"; + vidBottom = vidTop + maxHeight; + vidRight = vidX+maxWidth - 20; + } else { + video.style.maxWidth = vidWidth+"px"; + video.style.maxHeight = vidHeight+"px"; + vidBottom = vidTop + vidHeight; + vidRight = vidX+vidWidth - 20; + } + + if (vidBottom > windowHeight) { vidTop -= vidBottom-windowHeight; } + videoContainer.style.position = "fixed"; + videoContainer.style.display = "block"; + videoHide.style.display = "none"; + if (vidRight > windowWidth) { + video.style.left = vidX-(vidRight-windowWidth)+"px"; + } + else { + video.style.left = vidX+"px"; + } + video.style.top = vidTop+"px"; + video.style.pointerEvents = "none"; + video.style.display = "block"; + video.style.position = "fixed"; + video.muted = (setting("videovolume") == 0); + video.volume = setting("videovolume"); + video.controls = false; + video.play(); + } + else { + + $.each($this.posts, function(){ + var tim = this.tim; + var fileNum = vidName.split('-').pop(); + if(typeof this.extra_files != "undefined" && this.extra_files != null && this.extra_files.length > 0){ + $.each(this.extra_files, function() { + if (vidName==this.tim){ + tim = this.tim; + } + }); + } + if (vidName==tim) { + var vidX = e.clientX; + var vidY = e.clientY; + var vidWidth = this.w; + var vidHeight = this.h; + var vidAspect = vidHeight / vidWidth; + var windowWidth = $(window).width(); + var windowHeight = $(window).height(); + var totalWidth = windowWidth - vidX; + var totalHeight = totalWidth*vidAspect; + var maxWidth = totalWidth - 20; + if (maxWidth < 250) { maxWidth = 250; } + var maxHeight = maxWidth * vidAspect; + var vidTop = vidY; + var vidBottom; + var vidRight; + if (vidWidth > windowWidth) { + video.style.maxWidth = maxWidth+"px"; + video.style.maxHeight = maxHeight+"px"; + vidBottom = vidTop + maxHeight; + vidRight = maxWidth+vidX; + } else { + video.style.maxWidth = vidWidth+"px"; + video.style.maxHeight = vidHeight+"px"; + vidBottom = vidTop + vidHeight; + vidRight = vidWidth+vidX; + } + if (vidBottom > windowHeight) { + vidTop -= vidBottom-windowHeight; + } + + videoContainer.style.position = "fixed"; + videoContainer.style.display = "block"; + + videoHide.style.display = "none"; + + if (vidRight > windowWidth) { + video.style.left = vidX-(vidRight-windowWidth)+"px"; + } + else { + video.style.left = vidX+"px"; + } + video.style.top = vidTop+"px"; + video.style.pointerEvents = "none"; + video.style.display = "block"; + video.style.position = "fixed"; + video.muted = (setting("videovolume") == 0); + video.volume = setting("videovolume"); + video.controls = false; + video.play(); + } + }); + } //else*/ + }); } }, false); @@ -240,5 +356,4 @@ onready(function(){ }); observer.observe(document.body, {childList: true, subtree: true}); } -}); - +}); \ No newline at end of file From afd79689f3fe230528c0e190a86d113d825a6945 Mon Sep 17 00:00:00 2001 From: anonish Date: Sun, 8 Feb 2015 21:48:23 -0600 Subject: [PATCH 6/9] Cleanup for expand-video.js --- js/expand-video.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/js/expand-video.js b/js/expand-video.js index f268d550..0e9ddcbb 100644 --- a/js/expand-video.js +++ b/js/expand-video.js @@ -356,8 +356,4 @@ onready(function(){ }); observer.observe(document.body, {childList: true, subtree: true}); } -<<<<<<< HEAD }); -======= -}); ->>>>>>> 02708219d3aea65bffe40f6bc893e08dda1290ec From b6151bee514d0aa336bfff8ad0011b9a65821c8d Mon Sep 17 00:00:00 2001 From: anonish Date: Sun, 8 Feb 2015 21:53:36 -0600 Subject: [PATCH 7/9] testing --- js/expand-video.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/expand-video.js b/js/expand-video.js index 0e9ddcbb..57612e14 100644 --- a/js/expand-video.js +++ b/js/expand-video.js @@ -137,7 +137,7 @@ function setupVideo(thumb, url) { var pageType = window.active_page; var pageURL = isMod?window.location.href:window.location.pathname; var jsonURL; - + console.log("vidName = "+vidName); var thisThread; var thisPost; From d69e0e6fccc592492e49cdea412034e42da611c7 Mon Sep 17 00:00:00 2001 From: anonish Date: Sun, 8 Feb 2015 22:14:17 -0600 Subject: [PATCH 8/9] test 2 --- js/expand-video.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/expand-video.js b/js/expand-video.js index 57612e14..2f1e8713 100644 --- a/js/expand-video.js +++ b/js/expand-video.js @@ -137,9 +137,9 @@ function setupVideo(thumb, url) { var pageType = window.active_page; var pageURL = isMod?window.location.href:window.location.pathname; var jsonURL; - console.log("vidName = "+vidName); var thisThread; var thisPost; + console.log("vidName = "+vidName); if (pageType==="thread") { jsonURL = pageURL.replace(/\.html$/, ".json"); From 6dd547e1bfddf994b23aecb39ededb2f437d9ea4 Mon Sep 17 00:00:00 2001 From: anonish Date: Sat, 21 Feb 2015 00:47:07 -0600 Subject: [PATCH 9/9] revert changes to template.php --- inc/template.php | 1 - 1 file changed, 1 deletion(-) diff --git a/inc/template.php b/inc/template.php index 2049b004..416b6ecf 100644 --- a/inc/template.php +++ b/inc/template.php @@ -23,7 +23,6 @@ function load_twig() { $loader->setPaths($config['dir']['template']); $twig = new Twig_Environment($loader, array( 'autoescape' => false, - 'auto_reload' => true, 'cache' => is_writable('templates') || (is_dir('templates/cache') && is_writable('templates/cache')) ? "{$config['dir']['template']}/cache" : false, 'debug' => $config['debug']