You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Dmitry Blotsky (JIRA)" <ji...@apache.org> on 2015/04/14 00:03:13 UTC

[jira] [Created] (CB-8854) Log output not showing for jQuery.get()

Dmitry Blotsky created CB-8854:
----------------------------------

             Summary: Log output not showing for jQuery.get()
                 Key: CB-8854
                 URL: https://issues.apache.org/jira/browse/CB-8854
             Project: Apache Cordova
          Issue Type: Bug
         Environment: android moto g, 4.4.4
jquery 1.11.1, mobile 1.4.5
cordova (4.3.0) from npm
            Reporter: Dmitry Blotsky


Failing code:

{noformat}
    // Make an AJAX call off to get the bubbles 
    loadBubbles: function loadBubbles(settings) {
        console.log('Called into ze bubbles');
        console.log(settings);
        $.get('http://' + settings.server + ':' + settings.port + '/train_tracks/bubbles/' + settings.username + '/' + settings.password)
        .done(function (data) {
            console.log('data');
            console.log(data);
        })
        .error(function (obj, string, exception) {
            console.log(obj);
            console.log(string);
            console.log(exception);
        });

        console.log('end of bubbles');
    }
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org