├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bower.json ├── example ├── index.html └── index.js ├── ng-cordova-bluetoothle.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randdusing/ng-cordova-bluetoothle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randdusing/ng-cordova-bluetoothle/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randdusing/ng-cordova-bluetoothle/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randdusing/ng-cordova-bluetoothle/HEAD/bower.json -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randdusing/ng-cordova-bluetoothle/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randdusing/ng-cordova-bluetoothle/HEAD/example/index.js -------------------------------------------------------------------------------- /ng-cordova-bluetoothle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randdusing/ng-cordova-bluetoothle/HEAD/ng-cordova-bluetoothle.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randdusing/ng-cordova-bluetoothle/HEAD/package.json --------------------------------------------------------------------------------