You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm testing your camera plugin on my android smartphone (KitKat) with Chrome.
I am asked for camera use authorization, then then camera turns on but video is stuck on the first image it gets. No errors are shown on console. I didn't experienced the same issue when launching the page on desktops.
This is my code:
Hi,
I'm testing your camera plugin on my android smartphone (KitKat) with Chrome.
I am asked for camera use authorization, then then camera turns on but video is stuck on the first image it gets. No errors are shown on console. I didn't experienced the same issue when launching the page on desktops.
This is my code:
page html:
controller:
'use strict';
angular.module('quiceroServerApp')
.controller('CreatePostCtrl', function ($scope) {
$scope.onSuccess = function(data) {
window.alert(data);
};
$scope.onError = function(error) {
console.log(error);
};
$scope.onVideoError = function(error) {
console.log(error);
};
});
index.html:
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-qr-scanner/qr-scanner.js"></script>
<script src="bower_components/angular-qr-scanner/src/jsqrcode-combined.min.js"></script>
Thank you.
Best regards.
The text was updated successfully, but these errors were encountered: