Skip to content

Commit

Permalink
fix schedule url
Browse files Browse the repository at this point in the history
  • Loading branch information
smith committed Sep 13, 2011
1 parent f03b862 commit c2ec11e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CollegeFootball.wdgt/js/team.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ define(["require", "exports", "jquery", "schedule", "jquery.xdomainajax"],


team.getSchedule = function () { team.getSchedule = function () {
var d = $.Deferred(); var d = $.Deferred();
$.get("http://espn.go.com/college-football/team/_/id/" + team.id, $.get("http://espn.go.com/college-football/team/schedule/_/id/" + team.id,
function (data) { function (data) {
var s = team.schedule = schedule.create(data.responseText); var s = team.schedule = schedule.create(data.responseText);
d.resolve(s.toHtml()); d.resolve(s.toHtml());
Expand Down

0 comments on commit c2ec11e

Please sign in to comment.