mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-18 00:47:01 +00:00
refactor(load) DOMTree -> DOM
This commit is contained in:
parent
cf349c8afd
commit
652abb40e7
1 changed files with 4 additions and 6 deletions
|
|
@ -1,13 +1,11 @@
|
|||
var Util, DOM;
|
||||
|
||||
(function (Util, DOMTree) {
|
||||
(function (Util, DOM) {
|
||||
'use strict';
|
||||
|
||||
var DOMProto = Object.getPrototypeOf(DOMTree);
|
||||
var DOMProto = Object.getPrototypeOf(DOM);
|
||||
|
||||
DOMProto.load = new LoaderProto();
|
||||
DOMProto.load = new LoaderProto(Util, DOM);
|
||||
|
||||
function LoaderProto() {
|
||||
function LoaderProto(Util, DOM) {
|
||||
var Images = DOM.Images,
|
||||
Events = DOM.Events;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue