Custom Query (18300 matches)
Results (49 - 51 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#66 | fixed | new dojo site design unreadable | ||
Description |
The new Dojo site design is unreadable in my Web browser, the site requires a very wide browser window and becomes completely unuseable as you get slimmer. The "tertiary content" seems to have more importance than the main content as it is very much wider and has a huge heading. |
|||
#67 | fixed | Deprecate optional first argument to connect() | ||
Description |
connect([type="after",] ...) is a confusing way to present an API. If you were learning by osmosis, you'd be very confused when you first encountered the uncommon cases of connect("before", ...) or connect("around", ...). The easiest solution to this is to deprecate the optional-first-argument variant of connect, and simply use connectBefore and connectAround for the uncommon cases. It's shorter anyway, and far less confusing. Explicit is better than implicit. |
|||
#70 | fixed | dojo.event.connect fires function on the same call at which it was connected | ||
Description |
dojo.event.connect fires function on the same call at which it was connected. e.g. dojo.event.connect(document, "onmousedown", function (e) {
}); The alert should not be displayed on the first mousedown. |