diff --git a/app/com/gitpitch/views/Landing.scala.html b/app/com/gitpitch/views/Landing.scala.html
index dcaa4b9..0924052 100755
--- a/app/com/gitpitch/views/Landing.scala.html
+++ b/app/com/gitpitch/views/Landing.scala.html
@@ -72,6 +72,13 @@
@LandingSocialFeatures(rndr)
}
+
Press ? for Help
@@ -97,6 +104,27 @@
}
};
window.setInterval(focusOnSlides, 250);
+
+ function enterFullscreen() {
+ var iframes = $("#slideshow");
+ if(iframes.length > 0) {
+ iframes[0].contentWindow.enterFullscreen();
+ }
+ };
+
+ function enterOverview() {
+ var iframes = $("#slideshow");
+ if(iframes.length > 0) {
+ iframes[0].contentWindow.enterOverview();
+ }
+ };
+
+ function enterBlackout() {
+ var iframes = $("#slideshow");
+ if(iframes.length > 0) {
+ iframes[0].contentWindow.enterBlackout();
+ }
+ };