summaryrefslogtreecommitdiff
path: root/static/js/win.js
diff options
context:
space:
mode:
authordumpfmprod <dumpfmprod@ubuntu.(none)>2010-04-06 21:49:33 -0400
committerdumpfmprod <dumpfmprod@ubuntu.(none)>2010-04-06 21:49:33 -0400
commitbb6c557b0ec2c154d4da7aa3b291eebe942b9046 (patch)
tree06be29104d80a5533ec76eb9693ce52cae802438 /static/js/win.js
parenta136333cfc240a9fa7a76e44344dd6dd6eaade96 (diff)
Deleted static files, updated css
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";
}
}