mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-03-25 22:57:13 +08:00

closes https://github.com/driftyco/ionic-native/issues/86 https://github.com/driftyco/ionic-native/issues/79
18 lines
447 B
HTML
18 lines
447 B
HTML
<!doctype html>
|
|
<html ng-app="app">
|
|
<head>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
|
|
<script src="sql.js"></script>
|
|
<script src="../../dist/ionic.native.js"></script>
|
|
<script src="app.js"></script>
|
|
</head>
|
|
<body>
|
|
<h2>Test</h2>
|
|
<script>
|
|
angular.module('app', []);
|
|
</script>
|
|
<!-- div to test googlemaps plugin -->
|
|
<div id="gmap"></div>
|
|
</body>
|
|
</html>
|