[ 
https://issues.apache.org/jira/browse/CB-8854?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry Blotsky updated CB-8854:
-------------------------------
    Description: 
Failing code sample:

{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}

Original app seeing the issue: 
https://github.com/MinnesotaStreetcarMuseum/TrainLo

  was:
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}


> 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
>              Labels: android, console, jquery
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Failing code sample:
> {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}
> Original app seeing the issue: 
> https://github.com/MinnesotaStreetcarMuseum/TrainLo



--
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