diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-07-19 10:06:07 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-07-19 10:06:07 -0400 |
commit | 44d1a38a1925c2fa0eceaa4536da4c0968d310cc (patch) | |
tree | a209dc028ddb328592b8799061ae6f8453c92cf5 /demos/autocomplete/custom-data.html | |
parent | fe71d5d0a05b1e45055da8fdd39085999e5b43b3 (diff) | |
download | jquery-ui-44d1a38a1925c2fa0eceaa4536da4c0968d310cc.tar.gz jquery-ui-44d1a38a1925c2fa0eceaa4536da4c0968d310cc.zip |
Autocomplete: Moved all demo images into /demos/autocomplete/images.
Diffstat (limited to 'demos/autocomplete/custom-data.html')
-rw-r--r-- | demos/autocomplete/custom-data.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/autocomplete/custom-data.html b/demos/autocomplete/custom-data.html index 139b41d99..b9de20576 100644 --- a/demos/autocomplete/custom-data.html +++ b/demos/autocomplete/custom-data.html @@ -60,7 +60,7 @@ $('#project').val(ui.item.label); $('#project-id').val(ui.item.value); $('#project-description').html(ui.item.desc); - $('#project-icon').attr('src', '../images/' + ui.item.icon); + $('#project-icon').attr('src', 'images/' + ui.item.icon); return false; } @@ -78,7 +78,7 @@ <div class="demo"> <div id="project-label">Select a project (type "j" for a start):</div> - <img id="project-icon" src="../images/transparent_1x1.png" class="ui-state-default"/> + <img id="project-icon" src="images/transparent_1x1.png" class="ui-state-default"/> <input id="project"/> <input type="hidden" id="project-id"/> <p id="project-description"></p> |