Home | History | Annotate | Download | only in webapp

Lines Matching refs:clientArea

194     var clientArea = this.getClientArea_();
195 needsVerticalScroll = clientArea.height < this.plugin_.desktopHeight;
196 needsHorizontalScroll = clientArea.width < this.plugin_.desktopWidth;
200 clientArea.height - kScrollBarWidth < this.plugin_.desktopHeight;
203 clientArea.width - kScrollBarWidth < this.plugin_.desktopWidth;
806 var clientArea = this.getClientArea_();
807 this.plugin_.notifyClientResolution(clientArea.width,
808 clientArea.height,
994 var clientArea = this.getClientArea_();
995 this.plugin_.notifyClientResolution(clientArea.width,
996 clientArea.height,
1071 var clientArea = this.getClientArea_();
1072 this.plugin_.notifyClientResolution(clientArea.width,
1073 clientArea.height,
1133 var clientArea = this.getClientArea_();
1136 clientArea.width,
1137 clientArea.height,
1202 var clientArea = this.getClientArea_();
1227 var scaleFitWidth = Math.min(scale, 1.0 * clientArea.width / desktopWidth);
1229 Math.min(scale, 1.0 * clientArea.height / desktopHeight);
1388 var clientArea = this.getClientArea_();
1390 clientArea.width, plugin.clientWidth, stopX);
1394 style.marginTop, dy, clientArea.height, plugin.clientHeight, stopY);
1451 var clientArea = this.getClientArea_();
1452 var dx = computeDelta(event.x, clientArea.width);
1453 var dy = computeDelta(event.y, clientArea.height);