Commit e1264731 authored by Vadim Makeev's avatar Vadim Makeev

iframes support is dropped

parent ae5aa03f
...@@ -3,7 +3,6 @@ var url = document.location, ...@@ -3,7 +3,6 @@ var url = document.location,
slides = [], backhash = {}, slides = [], backhash = {},
linkScreen = document.querySelector('link[title=screen]'), linkScreen = document.querySelector('link[title=screen]'),
linkProjection = document.querySelector('link[title=projection]'), linkProjection = document.querySelector('link[title=projection]'),
iframes = window.frames,
fullscreen = false; fullscreen = false;
for(var i = 0, iLength = domSlides.length; i < iLength; i++) { for(var i = 0, iLength = domSlides.length; i < iLength; i++) {
...@@ -12,12 +11,6 @@ for(var i = 0, iLength = domSlides.length; i < iLength; i++) { ...@@ -12,12 +11,6 @@ for(var i = 0, iLength = domSlides.length; i < iLength; i++) {
backhash['#' + id] = i; backhash['#' + id] = i;
} }
for( var j = 0, jLength = iframes.length; j < jLength; j++ ) {
iframes[j].onfocus = function() {
window.top.focus();
}
}
function enterFull() { function enterFull() {
fullscreen = true; fullscreen = true;
updateView(); updateView();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment