includes/clientside/static/comments.js
changeset 779 609e35845ec3
parent 754 75decd836c94
child 823 4596c40aaa94
child 825 9d5c04c1414f
--- a/includes/clientside/static/comments.js	Sun Dec 21 16:28:00 2008 -0500
+++ b/includes/clientside/static/comments.js	Sun Dec 21 16:41:03 2008 -0500
@@ -5,11 +5,7 @@
 
 window.ajaxComments = function(parms)
 {
-  load_component('l10n');
-  load_component('paginate');
-  load_component('template-compiler');
-  load_component('toolbar');
-  load_component('flyin');
+  load_component(['l10n', 'paginate', 'template-compiler', 'toolbar', 'flyin']);
   setAjaxLoading();
   var pid = strToPageID(title);
   if(!parms)
@@ -358,15 +354,13 @@
   }
   if ( subj == '' )
   {
-    load_component('messagebox');
-    load_component('fadefilter');
+    load_component(['messagebox', 'fadefilter']);
     new MessageBox(MB_OK|MB_ICONSTOP, 'Input validation failed', 'Please enter a subject for your comment.');
     return false;
   }
   if ( text == '' )
   {
-    load_component('messagebox');
-    load_component('fadefilter');
+    load_component(['messagebox', 'fadefilter']);
     new MessageBox(MB_OK|MB_ICONSTOP, 'Input validation failed', 'Please enter some text for the body of your comment .');
     return false;
   }