Skip to content

Commit

Permalink
changed progress.gif image src from absolute to local
Browse files Browse the repository at this point in the history
  • Loading branch information
dpavlenkov committed Nov 8, 2010
1 parent 30add70 commit a7362b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/simple-blog/pub/scripts/weblocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function stopPropagation(event) {
// Register global AJAX handlers to show progress
Ajax.Responders.register({
onCreate: function() {
$('ajax-progress').innerHTML = "<img src='/pub/images/progress.gif'>";
$('ajax-progress').innerHTML = "<img src='pub/images/progress.gif'>";
},
onComplete: function() {
$('ajax-progress').innerHTML = "";
Expand Down
2 changes: 1 addition & 1 deletion pub/scripts/weblocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function stopPropagation(event) {
// Register global AJAX handlers to show progress
Ajax.Responders.register({
onCreate: function() {
$('ajax-progress').innerHTML = "<img src='/pub/images/progress.gif'>";
$('ajax-progress').innerHTML = "<img src='pub/images/progress.gif'>";
},
onComplete: function() {
$('ajax-progress').innerHTML = "";
Expand Down

0 comments on commit a7362b4

Please sign in to comment.