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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to