My favorite new timewaster
Posted by Mike on Oct 28th, 2008
The eyeballing game. Only click if you’ve got an hour to burn.
Best average score so far: 4.02
- Filed under off topic
- Tagged with
- Comments(0)
The eyeballing game. Only click if you’ve got an hour to burn.
Best average score so far: 4.02
Here’s a quick example of how to incorporate the Decorator Pattern into your javascript code using the Dojo framework. Rather than decorating an entire class, this example merely decorates a single function, extending the original function with some extra logic.
// Instantiate widget class
var w = new core.widget.MyWidget();
// Decorate the original "method1" function
var _old_method1 = [...]