mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
Disabled debug flag to improve performance
(the flags are set per 'class' on class.prototype.debug)
This commit is contained in:
parent
9569653d63
commit
4006726277
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ function block_class(id,group,config){
|
||||||
}
|
}
|
||||||
YAHOO.extend(block_class, YAHOO.util.DDProxy);
|
YAHOO.extend(block_class, YAHOO.util.DDProxy);
|
||||||
|
|
||||||
block_class.prototype.debug = true;
|
block_class.prototype.debug = false;
|
||||||
|
|
||||||
block_class.prototype.init_block = function(id, sGroup, config){
|
block_class.prototype.init_block = function(id, sGroup, config){
|
||||||
if (!id) { return; }
|
if (!id) { return; }
|
||||||
|
@ -262,7 +262,7 @@ function column_class(id,group,config,ident){
|
||||||
}
|
}
|
||||||
YAHOO.extend(column_class, YAHOO.util.DDTarget);
|
YAHOO.extend(column_class, YAHOO.util.DDTarget);
|
||||||
|
|
||||||
column_class.prototype.debug = true;
|
column_class.prototype.debug = false;
|
||||||
|
|
||||||
column_class.prototype.init_column = function(id, group,config,ident){
|
column_class.prototype.init_column = function(id, group,config,ident){
|
||||||
if (!id) { return; }
|
if (!id) { return; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue