// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt /* toolbar settings */ frappe.provide('erpnext.toolbar'); erpnext.toolbar.setup = function() { // user var $user = $('#toolbar-user'); $user.append('
  • ' +frappe._("My Settings")+'...
  • '); $user.append('
  • '); $user.append('
  • \ '+frappe._('Documentation')+'
  • '); $user.append('
  • \ '+frappe._('Forum')+'
  • '); if(frappe.boot.expires_on || frappe.boot.commercial_support) { $user.append('
  • \ \ '+frappe._('Live Chat')+'
  • '); } $("#toolbar-tools").append('
  • \ Latest Updates
  • '); }