Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/utils.js

Issue 13077005: Fix first-run page in Opera (Closed)
Patch Set: Fixed nits Created Oct. 16, 2013, 1:43 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/localstorage/io.js ('k') | metadata.opera » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/utils.js
===================================================================
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -10,29 +10,65 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
+let runAsyncQueue;
+
var Utils = exports.Utils = {
systemPrincipal: null,
getString: function(id)
{
return id;
},
- runAsync: function(callback, thisPtr)
+
+ // This function can take additional parameters. Second paramater will be
+ // passed as this variable to the callback and any additional parameters as
+ // callback parameters.
+ runAsync: function(callback)
{
- var params = Array.prototype.slice.call(arguments, 2);
- window.setTimeout(function()
+ callback = callback.bind.apply(callback, Array.prototype.slice.call(arguments, 1));
+
+ if (typeof runAsyncQueue == "undefined")
{
- callback.apply(thisPtr, params);
- }, 0);
+ runAsyncQueue = (document.readyState == "loading" ? [] : null);
+ if (runAsyncQueue)
+ {
+ // Hack: Opera will happily run asynchronous actions while scripts are
+ // loading, queue them until the document is ready.
+ let loadHandler = function()
+ {
+ document.removeEventListener("DOMContentLoaded", loadHandler, false);
+
+ let queue = runAsyncQueue;
+ runAsyncQueue = null;
+ for each (let callback in queue)
+ {
+ try
+ {
+ callback();
+ }
+ catch(e)
+ {
+ Cu.reportError(e);
+ }
+ }
+ };
+ document.addEventListener("DOMContentLoaded", loadHandler, false);
+ }
+ }
+
+ if (runAsyncQueue)
+ runAsyncQueue.push(callback);
+ else
+ window.setTimeout(callback, 0);
},
get appLocale()
{
var locale = chrome.i18n.getMessage("@@ui_locale").replace(/_/g, "-");
this.__defineGetter__("appLocale", function() {return locale});
return this.appLocale;
},
generateChecksum: function(lines)
« no previous file with comments | « lib/localstorage/io.js ('k') | metadata.opera » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld