summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-06-01 17:40:53 -0400
committerRobin Millette <millette@controlyourself.ca>2009-06-01 17:40:53 -0400
commitfe38827a76520e4a910f9e988b11d0914872d44e (patch)
tree30028f6a3e343576cdef10417986a6c73db24227 /js
parent0cbd72e0927cbe9b605e34d7bbd86d2046ea0c49 (diff)
Remove js that crept back in, added another error string.
Diffstat (limited to 'js')
-rw-r--r--js/util.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/js/util.js b/js/util.js
index acf44a17c..bffbf916f 100644
--- a/js/util.js
+++ b/js/util.js
@@ -28,30 +28,6 @@ $(document).ready(function(){
}
});
- $('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() {
- var anchor = $(this);
- $("a.thumbnail").children('img').remove();
-
- setTimeout(function() {
- anchor.closest(".entry-title").addClass('ov');
- $.get($('address .url')[0].href+'/attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) {
- anchor.append(data);
- });
- }, 250);
-
- setTimeout(function() {
- anchor.children('img').remove();
- anchor.closest(".entry-title").removeClass('ov');
- }, 3000);
- },
- function() {
- $(this).children('img').remove();
- $(this).closest(".entry-title").removeClass('ov');
- }
- );
-
// count character on keyup
function counter(event){
var maxLength = 140;