iframes support is dropped

This commit is contained in:
Vadim Makeev 2010-11-03 14:51:43 +03:00
parent ae5aa03fc4
commit e1264731dd
1 changed files with 0 additions and 7 deletions

View File

@ -3,7 +3,6 @@ var url = document.location,
slides = [], backhash = {},
linkScreen = document.querySelector('link[title=screen]'),
linkProjection = document.querySelector('link[title=projection]'),
iframes = window.frames,
fullscreen = false;
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;
}
for( var j = 0, jLength = iframes.length; j < jLength; j++ ) {
iframes[j].onfocus = function() {
window.top.focus();
}
}
function enterFull() {
fullscreen = true;
updateView();