Skip to content

Commit

Permalink
feat(ibeacon): add iBeacon plugin support (#270)
Browse files Browse the repository at this point in the history
* iBeacon hello-world

* moar methods

* added comments

* comments and descriptions

* removed debugging changes

* removed dupe export

* fixed misspellings and added more interface documentation
  • Loading branch information
justinschuldt authored and ihadeed committed Jul 11, 2016
1 parent 9eb63a0 commit dd97df1
Show file tree
Hide file tree
Showing 2 changed files with 701 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ import {GoogleMap} from './plugins/googlemaps';
import {GoogleAnalytics} from './plugins/googleanalytics';
import {Hotspot} from './plugins/hotspot';
import {Httpd} from './plugins/httpd';
import {IBeacon} from './plugins/ibeacon';
import {ImagePicker} from './plugins/imagepicker';
import {InAppBrowser} from './plugins/inappbrowser';
import {Insomnia} from './plugins/insomnia';
Expand Down Expand Up @@ -82,6 +83,7 @@ export * from './plugins/devicemotion';
export * from './plugins/deviceorientation';
export * from './plugins/googlemaps';
export * from './plugins/httpd';
export * from './plugins/ibeacon';
export * from './plugins/imagepicker';
export * from './plugins/inappbrowser';
export * from './plugins/launchnavigator';
Expand Down Expand Up @@ -180,6 +182,7 @@ window['IonicNative'] = {
GoogleAnalytics: GoogleAnalytics,
Hotspot: Hotspot,
Httpd: Httpd,
IBeacon: IBeacon,
ImagePicker: ImagePicker,
InAppBrowser: InAppBrowser,
Keyboard: Keyboard,
Expand Down
Loading

0 comments on commit dd97df1

Please sign in to comment.