This repository was archived by the owner on Jun 24, 2023. It is now read-only.

Description
There seems to be a problem with the logging feature.
Even in the official demo, wizard undefined... messages are printed on the console which is probably not what you want, right?
I have changed this.el.id to this.el[0].id in the below, but I don't think this is how it should be fixed.
log: function() {
if (!window.console || !$.fn.wizard.logging) {
return;
}
var prepend = "wizard " + this.el[0].id + ": ";
var args = [prepend];
args.push.apply(args, arguments);
console.log.apply(console, args);
}