fixed the resizable text area with IE problem fixed the ad space with IE problem merged the 7.2.0 and 7.1.4 change logs
15 lines
345 B
JavaScript
15 lines
345 B
JavaScript
// Adapter for YAHOO.widget.Logger
|
|
|
|
var ygLogger = function(module) {
|
|
return new YAHOO.widget.LogWriter(module);
|
|
};
|
|
|
|
YAHOO.widget.LogWriter.prototype.debug = function() {
|
|
this.log.apply(this, arguments);
|
|
};
|
|
|
|
ygLogger.init = function(div) {
|
|
new YAHOO.widget.LogReader(div, {
|
|
height: "400px"
|
|
});
|
|
};
|