Builder/About.js
authorAlan Knowles <alan@akbkhome.com>
Mon, 1 Nov 2010 03:29:10 +0000 (11:29 +0800)
committerAlan Knowles <alan@akbkhome.com>
Mon, 1 Nov 2010 03:29:10 +0000 (11:29 +0800)
Builder/About.js

index 47cadc8..ee29392 100644 (file)
@@ -12,12 +12,6 @@ console = imports.console;
 XObject = imports.XObject.XObject;
 About=new XObject({
     xtype: Gtk.AboutDialog,
-    authors : "Alan Knowles",
-    copyright : "LGPL",
-    license : "LGPL",
-    program_name : "app.Builder.js",
-    modal : true,
-    website : "http://www.akbkhome.com/blog.php",
     listeners : {
         response : function (self, response_id) {
             this.el.hide();
@@ -26,7 +20,13 @@ About=new XObject({
             this.el.hide();
             return true;
         }
-    }
+    },
+    authors : "Alan Knowles",
+    copyright : "LGPL",
+    license : "LGPL",
+    program_name : "app.Builder.js",
+    website : "http://www.akbkhome.com/blog.php",
+    modal : true
 });
 About.init();
 XObject.cache['/About'] = About;