Makes singleton variable name of QuerySelector lowercase

When we require a singleton, its instance name should be named
by lowercase, since it is not a class.

Fixes #128
This commit is contained in:
logsol 2016-10-10 23:17:16 +02:00
parent 5b3bfd4370
commit 91e0e7af3f
2 changed files with 40 additions and 40 deletions

View file

@ -3,12 +3,12 @@ define([
"Lib/Utilities/NotificationCenter"
],
function (Qs, nc) {
function (qs, nc) {
"use strict";
function PointerLockManager() {
this.canvas = Qs.$("#canvas");
this.canvas = qs.$("#canvas");
this.listeners = [];