mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
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:
parent
5b3bfd4370
commit
91e0e7af3f
2 changed files with 40 additions and 40 deletions
|
|
@ -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 = [];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue