X-Git-Url: https://juplo.de/gitweb/?p=openx;a=blobdiff_plain;f=jquery.openx.js;h=d02b228bc2726ce320c391770ea851cd8a0bfefb;hp=3ccdb39f9444f1ba5012c9e914668dcb81c4d06c;hb=HEAD;hpb=17a2f5b7816379f69363ccb9e3c421eecedbea7a diff --git a/jquery.openx.js b/jquery.openx.js index 3ccdb39..d02b228 100644 --- a/jquery.openx.js +++ b/jquery.openx.js @@ -31,7 +31,8 @@ slots = {}, min_width = {}, max_width = {}, - width, + is_pagewidth = {}, + pagewidth, rendered = {}, visible = {}, rendering = false, @@ -96,18 +97,29 @@ * * Other settings: * + * source: array An optional array of JavaScript-Objects, that + * define prefixes and suffixes, that should be + * added to source-tag defined in OA_source. Each + * object can (should) specify the properties "min" + * and "max". OA_source will only be altered, when + * min <= page-width <= max is true. If this is the + * case, the property "prefix" will be prepended to + * OA_source and the property "suffix" will be + * appended. * selector: string A selector for selecting the DOM-elements, that * should display ad-banners. DEFAULT: ".oa". * See: http://api.jquery.com/category/selectors/ * min_prefix: string Prefix for the encoding of the minmal width as - * CSS-classname. DEFAULT: "min_". + * CSS-class. DEFAULT: "min_". * max_prefix: string Prefix for the encoding of the maximal width as - * CSS-classname. DEFAULT: "max_". + * CSS-class. DEFAULT: "max_". + * pw_marker: string CSS-class, that marks the encoded maximal and minmal + * width as page width. DEFAULT: "pw". * resize_delay: number Number of milliseconds to wait, before a * recalculation of the visible ads is scheduled. * If the value is choosen to small, a recalculation * might be scheduled, while resizing is still in - * progress. DEFAULT: 200. + * progress. DEFAULT: 500. * debug: boolean Turn on/off console-debugging. DEFAULT: false. */ $.openx = function( options ) { @@ -142,7 +154,8 @@ 'selector': '.oa', 'min_prefix': 'min_', 'max_prefix': 'max_', - 'resize_delay': 200, + 'pw_marker': 'pw', + 'resize_delay': 500, 'debug': false }, options @@ -192,27 +205,38 @@ slots[id] = this; min_width[id] = 0; max_width[id] = Number.MAX_VALUE; + is_pagewidth[id] = false; classes = this.className.split(/\s+/); for (i=0; i= min_width[id] && width <= max_width[id]; if (visible[id]) { if (!rendered[id]) { @@ -292,12 +326,28 @@ if (settings.charset) src += '&charset=' + settings.charset; + /** Calculate responsive source-tag's */ + for (i=0; i= settings.source[i].min + && pagewidth <= settings.source[i].max + ) { + source_prefix = settings.source[i].prefix + source_prefix; + source_suffix = source_suffix + settings.source[i].suffix; + } + } + /** Add the source-code - if present */ - if (typeof OA_source !== 'undefined') - src += "&source=" + escape(OA_source); + if (typeof OA_source !== 'undefined' + || source_prefix != '' + || source_suffix != '' + ) { + if (settings.debug && console.debug) + console.debug('OA_source: ' + source_prefix + OA_source + source_suffix); + src += "&source=" + escape(source_prefix + OA_source + source_suffix); + } /** Signal, that this task is done / in progress */ - width = undefined; + pagewidth = undefined; /** Fetch data from OpenX and schedule the render-preparation */ $.getScript(src, init_ads); @@ -367,7 +417,13 @@ /** Remove leading HTML-comments, because IE will stumble otherwise */ inline = inline.slice(result[0].length,inline.length); } - $.globalEval(inline); + try { + $.globalEval(inline); + } + catch(e) { + if (console.error) + console.error('Error while executing inline script-code: ' + e.message); + } insert_output(); // << The executed inline-code might have called document.write()! } else { @@ -396,7 +452,7 @@ console.debug('Recalculation of visible banners done!'); /** Restart rendering, if new task was queued */ - if (width) + if (pagewidth) fetch_ads(); }