removed about
diff --git a/erpnext/public/js/conf.js b/erpnext/public/js/conf.js
index 65ffe2d..176e13a 100644
--- a/erpnext/public/js/conf.js
+++ b/erpnext/public/js/conf.js
@@ -16,25 +16,3 @@
 		"white-space": "nowrap"
 	});
 });
-
-frappe.provide('frappe.ui.misc');
-frappe.ui.misc.about = function() {
-	if(!frappe.ui.misc.about_dialog) {
-		var d = new frappe.ui.Dialog({title: __('About')})
-
-		$(d.body).html(repl("<div>\
-		<h2>ERPNext</h2>  \
-		<h4 class='text-muted'>"+__("Built on") + " Frappe Framework"+"</h4>  \
-		<p>"+__("Open source ERP built for the web") + "</p>" +
-		"<p>"+__("To report an issue, go to ")+"<a href='https://github.com/frappe/erpnext/issues'>GitHub Issues</a></p> \
-		<p><a href='http://erpnext.org' target='_blank'>http://erpnext.org</a>.</p>\
-		<p><a href='http://www.gnu.org/copyleft/gpl.html'>License: GNU General Public License Version 3</a></p>\
-		<hr>\
-		<p>&copy; 2014 Web Notes Technologies Pvt. Ltd and contributers </p> \
-		</div>", frappe.app));
-
-		frappe.ui.misc.about_dialog = d;
-	}
-
-	frappe.ui.misc.about_dialog.show();
-}