Skip to content

Commit b733651

Browse files
committed
use strictの追加
1 parent 7683d77 commit b733651

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

www/bluetoothle.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"use strict";
12
var bluetoothleName = "BluetoothLePlugin";
23
var bluetoothle = {
34
_newReorderer: function(successCallback) {
@@ -15,7 +16,7 @@ var bluetoothle = {
1516
*/
1617
if (sequence == null) {
1718
this.callback(obj);
18-
return;
19+
return;
1920
}
2021

2122
if (sequence != this.nextExpected) console.warn("Received out of order: expected " + this.nextExpected +" got " + sequence);
@@ -49,7 +50,7 @@ var bluetoothle = {
4950
},
5051
getAdapterInfo: function(successCallback) {
5152
cordova.exec(successCallback, successCallback, bluetoothleName, "getAdapterInfo", []);
52-
},
53+
},
5354
startScan: function(successCallback, errorCallback, params) {
5455
cordova.exec(successCallback, errorCallback, bluetoothleName, "startScan", [params]);
5556
},

0 commit comments

Comments
 (0)