deprecated breadcrumbs, titles are now selectable
diff --git a/accounts/doctype/cost_center/cost_center.js b/accounts/doctype/cost_center/cost_center.js
index 058ebfb..0825383 100644
--- a/accounts/doctype/cost_center/cost_center.js
+++ b/accounts/doctype/cost_center/cost_center.js
@@ -14,14 +14,6 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-cur_frm.cscript.set_breadcrumbs = function(barea) {
- cur_frm.frm_head.appframe.add_breadcrumb(cur_frm.docname);
- cur_frm.frm_head.appframe.add_breadcrumb(' in <a href="#!Accounts Browser/Cost Center">\
- Chart of Cost Centers</a>');
- cur_frm.frm_head.appframe.add_breadcrumb(' in <a href="#!accounts-home">Accounts</a>');
-}
-
cur_frm.cscript.refresh = function(doc, cdt, cdn) {
var intro_txt = '';
cur_frm.toggle_display('cost_center_name', doc.__islocal);
diff --git a/accounts/page/accounts_browser/accounts_browser.js b/accounts/page/accounts_browser/accounts_browser.js
index fb011ca..e1b8048 100644
--- a/accounts/page/accounts_browser/accounts_browser.js
+++ b/accounts/page/accounts_browser/accounts_browser.js
@@ -22,6 +22,7 @@
pscript['onload_Accounts Browser'] = function(wrapper){
wrapper.appframe = new wn.ui.AppFrame($(wrapper).find('.appframe-area'));
+ wrapper.appframe.add_module_tab("Accounts");
if (wn.boot.profile.can_create.indexOf("Company") !== -1) {
wrapper.appframe.add_button('New Company', function() { newdoc('Company'); },
@@ -57,10 +58,7 @@
// set route
var ctype = wn.get_route()[1] || 'Account';
- wrapper.appframe.clear_breadcrumbs();
- wrapper.appframe.add_breadcrumb('Chart of '+ctype+'s');
- document.title = 'Chart of '+ctype+'s';
- wrapper.appframe.add_breadcrumb(' in <a href="#!accounts-home">Accounts</a>');
+ wrapper.appframe.set_title('Chart of '+ctype+'s');
if(erpnext.account_chart && erpnext.account_chart.ctype != ctype) {
wrapper.$company_select.change();
diff --git a/public/js/modules.js b/public/js/modules.js
index c668e14..9f0152e 100644
--- a/public/js/modules.js
+++ b/public/js/modules.js
@@ -32,7 +32,6 @@
'Knowledge Base': 'questions',
}
-// wn.modules is used in breadcrumbs for getting module home page
wn.provide('wn.modules');
$.extend(wn.modules, erpnext.modules);
wn.modules['Core'] = 'Setup';
@@ -75,6 +74,15 @@
'Knowledge Base': 'ultra-dark-green'
}
+wn.get_module_color = function(module) {
+ try {
+ var color = wn.module_css_classes[wn.module_css_map[module]].middle;
+ } catch(e) {
+ var color = "#000";
+ }
+ return color;
+}
+
wn.provide('erpnext.module_page');
diff --git a/selling/page/sales_browser/sales_browser.js b/selling/page/sales_browser/sales_browser.js
index 8dde63d..df8149f 100644
--- a/selling/page/sales_browser/sales_browser.js
+++ b/selling/page/sales_browser/sales_browser.js
@@ -16,6 +16,8 @@
pscript['onload_Sales Browser'] = function(wrapper){
wrapper.appframe = new wn.ui.AppFrame($(wrapper).find('.appframe-area'));
+ wrapper.appframe.add_module_tab("Selling");
+
wrapper.appframe.add_button('Refresh', function() {
wrapper.make_tree();
}, 'icon-refresh');
@@ -32,11 +34,7 @@
// set route
var ctype = wn.get_route()[1] || 'Territory';
- wrapper.appframe.clear_breadcrumbs();
- wrapper.appframe.add_breadcrumb(ctype+' Tree')
- document.title = ctype+' Tree';
-
- wrapper.appframe.add_breadcrumb(' in <a href="#!selling-home">Selling</a>');
+ wrapper.appframe.set_title(ctype+' Tree')
if(erpnext.sales_chart && erpnext.sales_chart.ctype != ctype) {
wrapper.make_tree();
diff --git a/setup/doctype/customer_group/customer_group.js b/setup/doctype/customer_group/customer_group.js
index 531ff96..2b24c11 100644
--- a/setup/doctype/customer_group/customer_group.js
+++ b/setup/doctype/customer_group/customer_group.js
@@ -13,14 +13,6 @@
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-cur_frm.cscript.set_breadcrumbs = function(barea) {
- cur_frm.frm_head.appframe.add_breadcrumb(cur_frm.docname);
- cur_frm.frm_head.appframe.add_breadcrumb(' in <a href="#!Sales Browser/Customer Group">\
- Customer Group Tree</a>');
- cur_frm.frm_head.appframe.add_breadcrumb(' in <a href="#!selling-home">Selling</a>');
-}
-
cur_frm.cscript.refresh = function(doc, cdt, cdn) {
cur_frm.cscript.set_root_readonly(doc);
diff --git a/setup/doctype/item_group/item_group.js b/setup/doctype/item_group/item_group.js
index e5e108a..3869eec 100644
--- a/setup/doctype/item_group/item_group.js
+++ b/setup/doctype/item_group/item_group.js
@@ -14,13 +14,6 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-cur_frm.cscript.set_breadcrumbs = function(barea) {
- cur_frm.frm_head.appframe.add_breadcrumb(cur_frm.docname);
- cur_frm.frm_head.appframe.add_breadcrumb(' in <a href="#!Sales Browser/Item Group">\
- Item Group Tree</a>');
- cur_frm.frm_head.appframe.add_breadcrumb(' in <a href="#!selling-home">Selling</a>');
-}
-
//get query select item group
cur_frm.fields_dict['parent_item_group'].get_query = function(doc,cdt,cdn) {
return 'SELECT `tabItem Group`.`name`,`tabItem Group`.`parent_item_group` FROM `tabItem Group` WHERE `tabItem Group`.`is_group` = "Yes" AND `tabItem Group`.`docstatus`!= 2 AND `tabItem Group`.`name` !="'+doc.item_group_name+'" AND `tabItem Group`.%(key)s LIKE "%s" ORDER BY `tabItem Group`.`name` ASC LIMIT 50';
diff --git a/setup/doctype/sales_person/sales_person.js b/setup/doctype/sales_person/sales_person.js
index 1c7b13f..008d30d 100644
--- a/setup/doctype/sales_person/sales_person.js
+++ b/setup/doctype/sales_person/sales_person.js
@@ -14,13 +14,6 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-cur_frm.cscript.set_breadcrumbs = function(barea) {
- cur_frm.frm_head.appframe.add_breadcrumb(cur_frm.docname);
- cur_frm.frm_head.appframe.add_breadcrumb(' in <a href="#!Sales Browser/Sales Person">\
- Sales Person Tree</a>');
- cur_frm.frm_head.appframe.add_breadcrumb(' in <a href="#!selling-home">Selling</a>');
-}
-
cur_frm.cscript.refresh = function(doc, cdt, cdn) {
cur_frm.cscript.set_root_readonly(doc);
}
diff --git a/setup/doctype/territory/territory.js b/setup/doctype/territory/territory.js
index a52bb67..a04bea3 100644
--- a/setup/doctype/territory/territory.js
+++ b/setup/doctype/territory/territory.js
@@ -14,14 +14,6 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-cur_frm.cscript.set_breadcrumbs = function(barea) {
- cur_frm.frm_head.appframe.add_breadcrumb(cur_frm.docname);
- cur_frm.frm_head.appframe.add_breadcrumb(' in <a href="#!Sales Browser/Territory">\
- Territory Tree</a>');
- cur_frm.frm_head.appframe.add_breadcrumb(' in <a href="#!selling-home">Selling</a>');
-}
-
cur_frm.cscript.refresh = function(doc, cdt, cdn) {
cur_frm.cscript.set_root_readonly(doc);
}
diff --git a/utilities/page/question_view/question_view.js b/utilities/page/question_view/question_view.js
index 4371082..87a4422 100644
--- a/utilities/page/question_view/question_view.js
+++ b/utilities/page/question_view/question_view.js
@@ -16,7 +16,8 @@
pscript['onload_question-view'] = function(wrapper) {
wrapper.appframe = new wn.ui.AppFrame($(wrapper).find('.layout-appframe'));
- wrapper.appframe.title('<span class="breadcrumbs"><a href="#questions">Knowledge Base</a></span>');
+ wrapper.appframe.title('Question');
+ wrapper.appframe.add_module_tab('Knowledge Base');
wrapper.add_answer_area = $('.add-answer-area').get(0);
}