We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In IE8 the following fails (in function initWidget(){) with a object does not such property
if (userCtx.roles.indexOf("_admin") != -1) {
To fix it add a isEmpty check
if (!$.isEmptyObject(userCtx.roles) && userCtx.roles.indexOf("_admin") != -1) {
The text was updated successfully, but these errors were encountered:
Updated to address couchapp#3 from the parent.
0396982
No branches or pull requests
In IE8 the following fails (in function initWidget(){) with a object does not such property
To fix it add a isEmpty check
The text was updated successfully, but these errors were encountered: