mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
fixed bug with getByClass ie version
This commit is contained in:
parent
220779bf52
commit
1804198bc6
3 changed files with 5 additions and 5 deletions
|
|
@ -129,7 +129,7 @@ CloudClient.Cache.clear = (function(){
|
|||
});
|
||||
|
||||
/* Object contain additional system functional */
|
||||
CloudClient.Utils = (function(){
|
||||
CloudClient.Util = (function(){
|
||||
|
||||
/* Load file countent thrue ajax
|
||||
*/
|
||||
|
|
@ -756,7 +756,7 @@ CloudClient.Utils = (function(){
|
|||
};
|
||||
});
|
||||
|
||||
CloudClient.Util = new CloudClient.Utils();
|
||||
CloudClient.Util = new CloudClient.Util();
|
||||
|
||||
/* функция обработки нажатий клавишь */
|
||||
CloudClient.keyBinding=(function(){
|
||||
|
|
@ -1017,7 +1017,7 @@ var CloudFunc, $, Util,
|
|||
* инициализации
|
||||
*/
|
||||
CloudClient.init = (function(){
|
||||
Util = new CloudClient.Utils();
|
||||
Util = CloudClient.Util;
|
||||
getByClass = Util.getByClass;
|
||||
getById = Util.getById;
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ var CloudCommander, $;
|
|||
var lResult;
|
||||
|
||||
if(pElement)
|
||||
lResult = pElement.find(lClass);
|
||||
lResult = $(pElement).find(lClass);
|
||||
else lResult = $.find(lClass);
|
||||
|
||||
return lResult;
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ CloudCommander.KEY = {
|
|||
CloudCommander.keyBinding = (function(){
|
||||
"use strict";
|
||||
|
||||
var Util = new CloudCommander.Utils();
|
||||
var Util = CloudCommander.Util;
|
||||
|
||||
/* saving state of tabs varibles */
|
||||
var lTabPanel = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue