Changes in ow/static/js/ow.js [40ee398:56caf3d] in OpenWorkouts-current


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • ow/static/js/ow.js

    r40ee398 r56caf3d  
    162162            y = d3.scaleLinear().rangeRound([height, 0]);
    163163
    164         d3.json(url).then(function (data) {
     164        d3.json(url, {credentials: "same-origin"}).then(function (data) {
    165165            x.domain(data.map(function (d) {
    166166                return d.name;
     
    324324            y = d3.scaleLinear().rangeRound([height, 0]);
    325325
    326         d3.json(urls[url]).then(function (data) {
     326        d3.json(urls[url], {credentials: "same-origin"}).then(function (data) {
    327327            x.domain(data.map(function (d) {
    328328                return get_name_for_x(d);
Note: See TracChangeset for help on using the changeset viewer.