Skip to content

Commit

Permalink
Merge pull request davidshimjs#25 from ghigo/master
Browse files Browse the repository at this point in the history
Fix to allow closure compile pass
davidshimjs committed Nov 7, 2014
2 parents 549838f + 3b873f6 commit ea6f3c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qrcode.js
Original file line number Diff line number Diff line change
@@ -162,7 +162,7 @@ var QRCode;

if (/android/i.test(sAgent)) { // android
android = true;
aMat = sAgent.toString().match(/android ([0-9]\.[0-9])/i);
var aMat = sAgent.toString().match(/android ([0-9]\.[0-9])/i);

if (aMat && aMat[1]) {
android = parseFloat(aMat[1]);
@@ -319,7 +319,7 @@ var QRCode;
self._bSupportDataURI = false;

if (self._fFail) {
_fFail.call(self);
self._fFail.call(self);
}
};
var fOnSuccess = function() {

0 comments on commit ea6f3c7

Please sign in to comment.