diff --git a/docs/breadcrumbs.js b/docs/breadcrumbs.js index e0c10c402..d98655d32 100644 --- a/docs/breadcrumbs.js +++ b/docs/breadcrumbs.js @@ -62,6 +62,16 @@ *@version 1.0 */ +/** + * IE 5 on Mac doesn't know Array.push. + * + * Implement it - courtesy to fritz. + */ +var abc = new Array(); +if (!abc.push) { + Array.prototype.push = function(what){this[this.length]=what} +} + /* ======================================================================== CONSTANTS ======================================================================== */