MINOR Removed unnecessary console.*() from subsites javascript files

This commit is contained in:
Ingo Schommer 2010-03-28 20:08:10 +00:00
parent 1b4c314304
commit d36a6a3bde

View File

@ -1,7 +1,6 @@
Behaviour.register({
'#SubsiteActions select' : {
onchange: function() {
console.log('onchange', this);
if($('Form_AddPageOptionsForm_SubsiteID')) {
$('Form_AddPageOptionsForm_SubsiteID').value = this.value;
}
@ -46,7 +45,6 @@ Behaviour.register({
newOption.text = opt.firstChild.nodeValue;
newOption.value = opt.value;
//console.log(newOption.text + ' ' + newOption.value);
try {
origSelect.add(newOption, null);
} catch(ex) {