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
config = {};
In my app:
<script src="js/vendor.min.js"></script> <script src="/config/kiwapp_config.js"></script> <script src="js/app.js"></script>
Then
console.debug("[helpers@run] Kiwapp is loaded"); Kiwapp.rotate(helpersConfig.orientation || 'landscape'); Kiwapp.session().start();
With angular, because as you load async the configuration, the driver is not ready when we call it from a service or controller. We need to wait.
So with a sync loading inside the template, it works without any problems,
The text was updated successfully, but these errors were encountered:
Fix #7 - Allow kiwapp to be loaded by script tag
a0a73e9
Merge pull request #8 from kiwapp/ag_#7_kiwappnocall
1be17e2
No branches or pull requests
config = {};
In my app:
Then
Bug
With angular, because as you load async the configuration, the driver is not ready when we call it from a service or controller. We need to wait.
So with a sync loading inside the template, it works without any problems,
The text was updated successfully, but these errors were encountered: