Sample/About.js
authorAlan Knowles <alan@akbkhome.com>
Wed, 4 May 2011 09:16:14 +0000 (17:16 +0800)
committerAlan Knowles <alan@akbkhome.com>
Wed, 4 May 2011 09:16:14 +0000 (17:16 +0800)
Sample/About.js [deleted file]

diff --git a/Sample/About.js b/Sample/About.js
deleted file mode 100644 (file)
index 4fc46b1..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-Gtk = imports.gi.Gtk;
-Gdk = imports.gi.Gdk;
-Pango = imports.gi.Pango;
-GLib = imports.gi.GLib;
-Gio = imports.gi.Gio;
-GObject = imports.gi.GObject;
-GtkSource = imports.gi.GtkSource;
-WebKit = imports.gi.WebKit;
-Vte = imports.gi.Vte;
-GtkClutter = imports.gi.GtkClutter;
-Gdl = imports.gi.Gdl;
-console = imports.console;
-XObject = imports.XObject.XObject;
-About=new XObject({
-    xtype: Gtk.AboutDialog,
-    listeners : {
-        response : function (self, response_id) {
-            this.el.hide();
-        },
-        delete_event : function (self, event) {
-            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;