Coder Social home page Coder Social logo

grunt-angular-phonegap-example's People

Contributors

dsimard avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

grunt-angular-phonegap-example's Issues

Guidance re: device handlers for deviceready/offline/online

Can you provide any guidance on how to hook into PhoneGap's deviceready/online/offline events? Using vanilla PhoneGap it is extremely straightforward but I'm having issues getting it to work with an application based off of your template.

Using a brand new app (for simplicity) I've installed the network-information plugin using the following command:

phonegap local plugin add org.apache.cordova.network-information

I've also added the following listeners (onOnline and onOffline omitted for brevity):

 'use strict';

angular.module('exampleApp', [
    'ngCookies',
    'ngResource',
    'ngSanitize',
    'ngRoute'
])
    .config(function($routeProvider) {
        $routeProvider
            .when('/', {
                templateUrl: 'views/main.html',
                controller: 'MainCtrl'
            })
            .otherwise({
                redirectTo: '/'
            });
    })
    .run(function() {

        document.addEventListener("deviceready", onDeviceReady, false);

        function onDeviceReady() {
            alert('ready');
            //Initialize anything you need to. aka: Google analytics.

            //Set other evens you need to listen to.
            document.addEventListener("online", onOnline, false);
            document.addEventListener("offline", onOffline, false);
        }
    });

I'm guessing that the deveiceready handler is being added after the event has actually fired, but I've also tried adding similar logic directly to a script tag in but to no avail. Any help would be greatly appreciated!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.