xmlblog (owner)

Revisions

gist: 159362 Download_button fork
public
Description:
Alias Method Chain for YUI / JS
Public Clone URL: git://gist.github.com/159362.git
Embed All Files: show embed
JavaScript #
1
2
3
4
YAHOO.lang.augmentObject(YAHOO.tracking.Omniture, { alias_method_chain: function (fn_name, ext) {
this.prototype[fn_name + "_without_" + ext] = this.prototype[fn_name];
this.prototype[fn_name] = this.prototype[fn_name + "_with_" + ext];
}});