This is an archive of the old site. Visit the latest version at dexie.org.

Dexie.override()

Enables overriding existing functions and still be able to call the original function from within your overridden function.

Sample

The following sample shows how to log to console each time window.open() is called.

window.open = Dexie.override(window.open, function(origFunc) {
    return function (url) {
        console.log("Opening url: " + url);
        return origFunc.apply(this, arguments);
    }
});

Table of Contents