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