From 083f81b59dba42a4ae05ce582b43e60eed6b9e10 Mon Sep 17 00:00:00 2001 From: lorilee Date: Mon, 28 Jun 2010 20:52:56 -0400 Subject: [PATCH] Corrected a tiny typo which ruined everything --- js/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/functions.js b/js/functions.js index 1ede62b93..2f06935ea 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1760,7 +1760,7 @@ $(document).ready(function() { // Center the popup var windowWidth = document.documentElement.clientWidth; var windowHeight = document.documentElement.clientHeight; - var popupWidth = $("#enum_editor").width();g + var popupWidth = $("#enum_editor").width(); var popupHeight = $("#enum_editor").height(); var top = windowHeight/2 - popupHeight/2; var left = windowWidth/2 - popupWidth/2;