Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Closes #563 Trying first Utils.delay() for Firefox 4, 5 Beta and 6 Au…
Browse files Browse the repository at this point in the history
…rora . If it gives exception , call Utils.nextTick() for latest Nightlies
  • Loading branch information
grssam committed Jun 17, 2011
1 parent 448bdbe commit c179ad7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion speakWords/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,13 @@ function addKeywordSuggestions(window) {
justCompleted = true;

// Make sure the search suggestions show up
Utils.delay(function() urlBar.controller.startSearch(urlBar.value));
// try calling delay() , if fails call nextTick() (For latest Nightlies)
try {
Utils.delay(function() urlBar.controller.startSearch(urlBar.value));
}
catch (e) {
Utils.nextTick(function() urlBar.controller.startSearch(urlBar.value));
}
});
}

Expand Down

0 comments on commit c179ad7

Please sign in to comment.