ng-cordova
Version:
[ngCordova](http://ngcordova.com/) ==========
25 lines (21 loc) • 773 B
JavaScript
angular.module('demo.device.ctrl', [])
.controller('DeviceCtrl', function ($scope, $state, $cordovaDevice) {
var init = function () {
console.log("initializing device");
try {
document.addEventListener("deviceready", function () {
$scope.available = $cordovaDevice.getDevice().available;
$scope.cordova = $cordovaDevice.getCordova();
$scope.model = $cordovaDevice.getModel();
$scope.platform = $cordovaDevice.getPlatform();
$scope.uuid = $cordovaDevice.getUUID();
$scope.version = $cordovaDevice.getVersion();
}, false);
}
catch (err) {
console.log("Error " + err.message);
alert("error " + err.$$failure.message);
}
};
init();
});