summaryrefslogtreecommitdiff
path: root/core/js/quickedit.js
diff options
context:
space:
mode:
authorChad Kieffer <chad@2tbsp.com>2009-01-04 00:35:12 +0000
committerChad Kieffer <chad@2tbsp.com>2009-01-04 00:35:12 +0000
commit85574d7b82f9bf6ea44eb594594ae3bb9f7f8ff4 (patch)
treee5d0ce7fa6a0a29b1aeb5abf63e5e97675e031ab /core/js/quickedit.js
parent2f44c2b2695071f8cad0167d424125193027b2bd (diff)
CSS/JS formatting and selector updates.
Diffstat (limited to 'core/js/quickedit.js')
-rw-r--r--core/js/quickedit.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/js/quickedit.js b/core/js/quickedit.js
index d63a0037..307a5f3a 100644
--- a/core/js/quickedit.js
+++ b/core/js/quickedit.js
@@ -1,5 +1,5 @@
$(document).ready(function() {
- $("div.gQuickEdit").hover(show_quickedit, function() { });
+ $(".gQuickEdit").hover(show_quickedit, function() {});
});
var show_quickedit = function() {
@@ -43,11 +43,11 @@ var quickedit = function(quick_edit, pane, img) {
var pos = img.position();
quick_edit.removeClass("gLoadingLarge");
$("#gQuickEditPane").css({
- "position": "absolute",
- "top": pos.top,
- "left": pos.left,
- "width": img.innerWidth() + 1,
- "height": 32
+ "position": "absolute",
+ "top": pos.top,
+ "left": pos.left,
+ "width": img.innerWidth() + 1,
+ "height": 32
});
}
});