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
As already mentioned in a post in this group, the /list.html page on webintents.org is currently broken.
Check this out:
The renderActions function calls the renderAction function with in turn calls the launch function.
In the latter function, line 63 following check is done if(!! intent._callback == false) with intent:=UNDEFINED what causes the following exception:
Uncaught TypeError: Cannot read property '_callback' of undefined -> launch (controller.js:63)
Solution: if( intent != undefined && !!intent._callback == false)
The text was updated successfully, but these errors were encountered:
Fixes PaulKinlan#147 - remove the click handler for list.html
9ad9bc9
No branches or pull requests
As already mentioned in a post in this group, the /list.html page on
webintents.org is currently broken.
Check this out:
line 45: IntentController.renderActions(action.actions, undefined,
root) where intent has the value UNDEFINED.
The renderActions function calls the renderAction function with in
turn calls the launch function.
In the latter function, line 63 following check is done if(!!
intent._callback == false) with intent:=UNDEFINED what causes the
following exception:
Uncaught TypeError: Cannot read property '_callback' of undefined
-> launch (controller.js:63)
Solution: if( intent != undefined && !!intent._callback == false)
The text was updated successfully, but these errors were encountered: