iframes support is dropped
This commit is contained in:
parent
ae5aa03fc4
commit
e1264731dd
|
@ -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++) {
|
||||||
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();
|
||||||
|
|
Loading…
Reference in New Issue