summaryrefslogtreecommitdiff
path: root/js/util.js
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-05-25 18:54:45 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-05-25 18:54:45 +0000
commit7923e84fba66d8e3e7ec24a8a663f0c2c0f0e533 (patch)
treefad9a802826d477fc434fe34d7923046a7fa8aa2 /js/util.js
parent0b96ca3d5957a0cb363813fe44cc1865bb6c4eb5 (diff)
Fixed URL for attachment thumbnail and XHR
Diffstat (limited to 'js/util.js')
-rw-r--r--js/util.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/js/util.js b/js/util.js
index 9ee2a1963..ffaedc690 100644
--- a/js/util.js
+++ b/js/util.js
@@ -23,20 +23,20 @@ $(document).ready(function(){
//FIXME
//need to link to proper url depending on site config (path name and theme, for instance)
- $('a.attachment').click(function() {$().jOverlay({url:'/attachment/' + ($(this).attr('id').substring('attachment'.length + 1)) + '/ajax'}); return false; });
- $('.entry-title a.attachment').append('&nbsp;<img style="display: inline; vertical-align: middle" src="/theme/base/images/icons/clip-inline.png" alt="Attachment" />');
- $('a.thumbnail').hover(function() {
- anchor = $(this);
- $.get('/attachment/' + ($(this).attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) {
- anchor.append(data);
- $('#thumbnail').fadeIn('def');
- });
- },
- function() {
- setTimeout(function() {
- $('#thumbnail').fadeOut('slow', function() {$(this).remove();});
- }, 500);
- }
+ $('a.attachment').click(function() {$().jOverlay({url: $('address .url')[0].href+'/attachment/' + ($(this).attr('id').substring('attachment'.length + 1)) + '/ajax'}); return false; });
+ $('a.thumbnail').hover(
+ function() {
+ anchor = $(this);
+ $.get($('address .url')[0].href+'/attachment/' + ($(this).attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) {
+ anchor.append(data);
+ $('#thumbnail').fadeIn('def');
+ });
+ },
+ function() {
+ setTimeout(function() {
+ $('#thumbnail').fadeOut('slow', function() {$(this).remove();});
+ }, 500);
+ }
);
// count character on keyup