Fix fbUpdateRequest undefined parameter logic.

This commit is contained in:
Joel Martin 2011-09-14 10:42:15 -05:00
parent 608e0f52ee
commit e0b23efe95
1 changed files with 4 additions and 4 deletions

View File

@ -1414,10 +1414,10 @@ clientEncodings = function() {
fbUpdateRequest = function(incremental, x, y, xw, yw) { fbUpdateRequest = function(incremental, x, y, xw, yw) {
//Util.Debug(">> fbUpdateRequest"); //Util.Debug(">> fbUpdateRequest");
if (typeof(x) !== "undefined") { x = 0; } if (typeof(x) === "undefined") { x = 0; }
if (typeof(y) !== "undefined") { y = 0; } if (typeof(y) === "undefined") { y = 0; }
if (typeof(xw) !== "undefined") { xw = fb_width; } if (typeof(xw) === "undefined") { xw = fb_width; }
if (typeof(yw) !== "undefined") { yw = fb_height; } if (typeof(yw) === "undefined") { yw = fb_height; }
var arr; var arr;
arr = [3]; // msg-type arr = [3]; // msg-type
arr.push8(incremental); arr.push8(incremental);