blob: e9c790db1030781a2b2c58381605696078ec6f80 [file] [log] [blame]
Rushabh Mehtaad45e312013-11-20 12:59:58 +05301// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302// License: GNU General Public License v3. See license.txt
3
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05304frappe.provide('erpnext');
Rushabh Mehta8c309be2012-01-20 13:47:16 +05305
Rushabh Mehtaa9209432012-05-07 18:00:57 +05306// add toolbar icon
Rushabh Mehta8c309be2012-01-20 13:47:16 +05307$(document).bind('toolbar_setup', function() {
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05308 frappe.app.name = "ERPNext";
Rushabh Mehta8a40c132014-04-15 16:30:55 +05309
10 $('.navbar-brand').html('<i class="icon-home"></i>')
11 .attr("title", "Home")
Anand Doshic8b2c0f2013-07-18 18:15:56 +053012 .addClass("navbar-icon-home")
Anand Doshi28d59a02013-07-19 17:50:25 +053013 .css({
14 "max-width": "200px",
Anand Doshi28d59a02013-07-19 17:50:25 +053015 "text-overflow": "ellipsis",
16 "white-space": "nowrap"
17 });
Rushabh Mehtae8dd4162014-08-22 15:21:27 +053018
19 $('[data-link="docs"]').attr("href", "https://erpnext.com/user-guide")
Anand Doshi859cb722012-04-10 11:35:19 +053020});