mirror of
https://github.com/overte-org/overte.git
synced 2025-06-02 03:41:08 +02:00
removed double variable definition
This commit is contained in:
parent
ccecce77de
commit
92993202a4
1 changed files with 1 additions and 1 deletions
|
@ -40,13 +40,13 @@ function calcSpawnInfo() {
|
||||||
|
|
||||||
// ctor
|
// ctor
|
||||||
WebTablet = function (url, width, dpi, location, clientOnly) {
|
WebTablet = function (url, width, dpi, location, clientOnly) {
|
||||||
|
|
||||||
var _this = this;
|
var _this = this;
|
||||||
var ASPECT = 4.0 / 3.0;
|
var ASPECT = 4.0 / 3.0;
|
||||||
var WIDTH = width || DEFAULT_WIDTH;
|
var WIDTH = width || DEFAULT_WIDTH;
|
||||||
var HEIGHT = WIDTH * ASPECT;
|
var HEIGHT = WIDTH * ASPECT;
|
||||||
var DEPTH = 0.025;
|
var DEPTH = 0.025;
|
||||||
var DPI = dpi || DEFAULT_DPI;
|
var DPI = dpi || DEFAULT_DPI;
|
||||||
var _this = this;
|
|
||||||
|
|
||||||
var tabletProperties = {
|
var tabletProperties = {
|
||||||
name: "WebTablet Tablet",
|
name: "WebTablet Tablet",
|
||||||
|
|
Loading…
Reference in a new issue