always open links embedded in knowledge base answers in new tab
diff --git a/home/page/latest_updates/latest_updates.js b/home/page/latest_updates/latest_updates.js
index 16c51f5..38ff40f 100644
--- a/home/page/latest_updates/latest_updates.js
+++ b/home/page/latest_updates/latest_updates.js
@@ -1,7 +1,8 @@
erpnext.updates = [
["19th November 2012", [
- "Sales Order: Bugfix - Shipping Address should be a Link field",
- "Link Fields: Search Profile, Employee and Lead using Full Names instead of ID",
+ "Sales Order: Bugfix - Shipping Address should be a Link field.",
+ "Link Fields: Search Profile, Employee and Lead using Full Names instead of ID.",
+ "Knowledge Base: Always open links, embedded in an answer, in a new tab."
]],
["16th November 2012", [
"Appraisal: Cleaned up form and logic. Removed complex and unnecessary approval logic, \
diff --git a/public/js/kb_common.js b/public/js/kb_common.js
index 9d6b7e8..ae80acf 100644
--- a/public/js/kb_common.js
+++ b/public/js/kb_common.js
@@ -100,7 +100,9 @@
</div>', args)).appendTo(me.parent);
this.set_display = function(txt) {
- me.$w.find('.ed-text-display').html(wn.markdown(txt));
+ var display_wrapper = me.$w.find('.ed-text-display');
+ display_wrapper.html(wn.markdown(txt));
+ display_wrapper.find("a").attr("target", "blank");
me.text = txt;
}
diff --git a/utilities/page/question_view/question_view.js b/utilities/page/question_view/question_view.js
index 87a4422..3d16fa8 100644
--- a/utilities/page/question_view/question_view.js
+++ b/utilities/page/question_view/question_view.js
@@ -183,8 +183,6 @@
with_tags: 0,
doctype: 'Answer'
}, ans_list)
-
}
-
-wn.require('app/utilities/page/kb_common/kb_common.js');
+wn.require('app/js/kb_common.js');
\ No newline at end of file