19 lines
466 B
JavaScript
Raw Normal View History

2013-11-20 12:59:58 +05:30
// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
// License: GNU General Public License v3. See license.txt
2014-02-14 15:47:51 +05:30
frappe.provide('erpnext');
2012-01-20 13:47:16 +05:30
2012-05-07 18:00:57 +05:30
// add toolbar icon
2012-01-20 13:47:16 +05:30
$(document).bind('toolbar_setup', function() {
2014-02-14 15:47:51 +05:30
frappe.app.name = "ERPNext";
2014-04-15 16:30:55 +05:30
$('.navbar-brand').html('<i class="icon-home"></i>')
.attr("title", "Home")
.addClass("navbar-icon-home")
.css({
"max-width": "200px",
"text-overflow": "ellipsis",
"white-space": "nowrap"
});
2012-04-10 11:35:19 +05:30
});