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
Assigning to snapRemoteProvider.globalOptions directly is clunky and creates confusions.
snapRemoteProvider.globalOptions
The text was updated successfully, but these errors were encountered:
How do you actually use snapRemote? I'm getting this error:
snapRemote
Uncaught Error: [$injector:modulerr] Failed to instantiate module ngRatesApp due to: Error: [$injector:unpr] Unknown provider: snapRemote
But I believe I have set it up correctly:
angular.module('ngRatesApp', [ 'snap']) .config ['$httpProvider', '$routeProvider', 'snapRemote', ($httpProvider, $routeProvider, snapRemote) -> # routes go here # snapRemote.globalOptions = # touchToDrag: false ]
Sorry, something went wrong.
I think you just have a typo, should be:
angular.module('ngRatesApp', [ 'snap']) .config ['$httpProvider', '$routeProvider', 'snapRemoteProvider', ($httpProvider, $routeProvider, snapRemoteProvider) -> # routes go here # snapRemote.globalOptions = # touchToDrag: false ]
No branches or pull requests
Assigning to
snapRemoteProvider.globalOptions
directly is clunky and creates confusions.The text was updated successfully, but these errors were encountered: