install.sh
[app.Builder.js] / Builder / About.js
index 236cbfd..ee29392 100644 (file)
@@ -7,16 +7,11 @@ GObject = imports.gi.GObject;
 GtkSource = imports.gi.GtkSource;
 WebKit = imports.gi.WebKit;
 Vte = imports.gi.Vte;
+GtkClutter = imports.gi.GtkClutter;
 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();
@@ -25,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;