From 1bf9df7c851892437bc423fa7cbf719183f18cdb Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 28 May 2014 13:15:32 +0530 Subject: [PATCH] removed about --- erpnext/public/js/conf.js | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/erpnext/public/js/conf.js b/erpnext/public/js/conf.js index 65ffe2db72..176e13a091 100644 --- a/erpnext/public/js/conf.js +++ b/erpnext/public/js/conf.js @@ -16,25 +16,3 @@ $(document).bind('toolbar_setup', function() { "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("
\ -

ERPNext

\ -

"+__("Built on") + " Frappe Framework"+"

\ -

"+__("Open source ERP built for the web") + "

" + - "

"+__("To report an issue, go to ")+"GitHub Issues

\ -

http://erpnext.org.

\ -

License: GNU General Public License Version 3

\ -
\ -

© 2014 Web Notes Technologies Pvt. Ltd and contributers

\ -
", frappe.app)); - - frappe.ui.misc.about_dialog = d; - } - - frappe.ui.misc.about_dialog.show(); -}