Yaniv Efraim
Yaniv Efraim
Sometimes you just want a TL;DR version, code only. Too many comments might make it hard to read the code...
Partial file names. Files names with same prefix where mistakenly matched. For example: Both "scripts/main.js" and "scripts/mobile-main.js" where a match to "main.js" file. I added regex fix in order to...
Inside `onGotFirstAd`, when calling `oaf.call(that, that);`, the `that` argument is passed instead of `ads`. As far as I understand it should be: ``` js (function(ad, allowPods, that) { onGotFirstAd =...