Morphic: Replaced deprecated DOM “body” references with “documentElement”

pull/3/merge
jmoenig 2014-02-03 17:30:31 +01:00
rodzic 3fede790e4
commit 8654d9c3fc
2 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -2074,3 +2074,4 @@ ______
140203
------
* Threads: Fixed #313. “Block of sprite” now works for interpolated (“timed”) blocks and for reporters (i.e. SAY FOR, THINK FOR, GLIDE, ASK etc.)
* Morphic: replace deprecated DOM “body” references with “documentElement”

Wyświetl plik

@ -1035,7 +1035,7 @@
/*global window, HTMLCanvasElement, getMinimumFontHeight, FileReader, Audio,
FileList, getBlurredShadowSupport*/
var morphicVersion = '2014-January-09';
var morphicVersion = '2014-February-03';
var modules = {}; // keep track of additional loaded modules
var useBlurredShadows = getBlurredShadowSupport(); // check for Chrome-bug
@ -10029,13 +10029,14 @@ WorldMorph.prototype.fillPage = function () {
this.worldCanvas.style.top = "0px";
pos.y = 0;
}
if (document.body.scrollTop) { // scrolled down b/c of viewport scaling
if (document.documentElement.scrollTop) {
// scrolled down b/c of viewport scaling
clientHeight = document.documentElement.clientHeight;
}
if (document.body.scrollLeft) { // scrolled left b/c of viewport scaling
if (document.documentElement.scrollLeft) {
// scrolled left b/c of viewport scaling
clientWidth = document.documentElement.clientWidth;
}
if (this.worldCanvas.width !== clientWidth) {
this.worldCanvas.width = clientWidth;
this.setWidth(clientWidth);