User puts name in for "Find your extensions" in the options and gets "no user found" well, despite having themes or extensions in the Chrome web store.
If JavaScript console is open, then this error appears: "Paused on exception: 'SyntaxError'."
Cause:
"class" is now a reserved keyword, so you can no longer use it as a variable.
Solution:
Use the following patch submitted by cmrd.Kaash on 2011/08/03 (based on work by Derek and an anonymous user).
Lines: 1296-1303:
var c_class = '';
var title = 'no change';
if(diff) {
c_class = diff > 0 ? ' up' : ' down';
title = diff > 0 ? ' +' + diff.toFormatted(',') : diff.toFormatted(',');
}
Symptoms:
Cause: "class" is now a reserved keyword, so you can no longer use it as a variable.
Solution: Use the following patch submitted by cmrd.Kaash on 2011/08/03 (based on work by Derek and an anonymous user).
Lines: 1296-1303: var c_class = ''; var title = 'no change'; if(diff) { c_class = diff > 0 ? ' up' : ' down'; title = diff > 0 ? ' +' + diff.toFormatted(',') : diff.toFormatted(','); }