-
Seeing memory increase in the task monitor does not prove there is a memory leak. When IE decides to release memory is out of our control, and I am seeing that the memory is released eventually. Local tests pass -- Use the Microsoft memory leak detector they provide for free for IE7 (which also lets you test IE6 leaks).
2009-01-09 19:47:00 UTC in YUI Library
-
Please don't re-open a very old bug with no explanation. If you are experiencing an issue similar to what was reported here, please provide a test case and file a new bug. Thanks.
2008-11-25 19:37:47 UTC in YUI Library
-
Timeout support was added in version 2.6.0.
2008-11-21 18:57:49 UTC in YUI Library
-
Please provide a link to a page that is generating this error. I don't see any difference between the two files on yahooapis (aside from the minification, of course).
2008-11-10 23:23:13 UTC in YUI Library
-
What is "quite often" and "extended periods of time"? We had this issue two months ago, but this is the first report since then. Can you give me specific times?.
2008-10-22 00:53:26 UTC in YUI Library
-
The module metadata isn't fully functional through YUI.add currently, so try specifying the module in the config (using the fullpath param to handle the path issue):
YUI({ base: '../yui3',
modules: {
'simple': {
fullpath: "../simple.js"
}
}).use('simple'...
2008-10-16 20:27:49 UTC in YUI Library
-
The code blocks are parsed by a client-side syntax highlighter, and it is displayed in a monospace font. Please provide your browser, platform, and a screenshot demonstrating the issue you are experiencing.
2008-10-16 19:57:24 UTC in YUI Library
-
The event utility works in IE6, so I'm not sure this bug report is about. Comment blocks, whether or not they contain @TODO should not generate a JS error. Please provide a test case that documents the specific problem you are experiencing.
2008-10-16 19:51:39 UTC in YUI Library
-
I don't understand this issue. In either case it will have to dynamically load the required modules that are not included on the page. Both 'requires' lines work as expected.
2008-10-16 19:47:00 UTC in YUI Library
-
http://developer.yahoo.com/yui/yuiloader/#using
The files are loaded asynchronously, so you need to put your implementation code inside of the onSuccess callback:
var loader = new YAHOO.util.YUILoader({
require: ["button"],
onSuccess: function() {
var oButton = new YAHOO.widget.Button("examplebuttonid");
}
});
loader.insert();.
2008-10-03 20:24:22 UTC in YUI Library