summaryrefslogtreecommitdiff
path: root/static/js/win.js
diff options
context:
space:
mode:
authorsostler <sbostler@gmail.com>2010-04-06 21:53:42 -0400
committersostler <sbostler@gmail.com>2010-04-06 21:53:42 -0400
commita0334eba97fb985ee290c11f6ee72196dbe889b0 (patch)
treed348e857b04d4e47bfb7afb712c7bee70545a6cc /static/js/win.js
parenta514554be0b15d937959af2d52c03da7eee3d60f (diff)
parentab5e22770ce39adc94f444de18763a4b4674113a (diff)
Merge RM of static/help.html
Diffstat (limited to 'static/js/win.js')
-rw-r--r--static/js/win.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/static/js/win.js b/static/js/win.js
index 7571791..670d6b4 100644
--- a/static/js/win.js
+++ b/static/js/win.js
@@ -85,7 +85,7 @@ function CreateDropdownWindow( caption, theWidth, canMove, contentSource, startX
newdiv.innerHTML = jstrprintf(
'<table><tr><td>$1</td>' +
'<td style="text-align:right">' +
- '<img src="/static/buttontop.gif" class="divTitleButton" id="dragButton$2" ' +
+ '<img src="/static/img/buttontop.gif" class="divTitleButton" id="dragButton$2" ' +
'onmousedown="javascript:toggleContentWin($2)" /></td>' +
'</tr></table>',
caption, nextID);
@@ -155,14 +155,14 @@ function toggleContentWin(id) {
elem.style.display = "block";
// Change the button's image
- img.src = "/static/buttontop.gif";
+ img.src = "/static/img/buttontop.gif";
}
else {
// showing, so hide
elem.style.display = "none";
// Change the button's image
- img.src = "/static/buttonbottom.gif";
+ img.src = "/static/img/buttonbottom.gif";
}
}