summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--viewfeed.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/viewfeed.js b/viewfeed.js
index a23073fac..bee13f5a7 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -2260,11 +2260,12 @@ function initHeadlinesMenu() {
});
- menu.addChild(new dijit.MenuItem({
- label: __("View article"),
- onClick: function(event) {
- view(this.getParent().callerRowId);
- }}));
+ if (!isCdmMode())
+ menu.addChild(new dijit.MenuItem({
+ label: __("View article"),
+ onClick: function(event) {
+ view(this.getParent().callerRowId);
+ }}));
menu.addChild(new dijit.MenuItem({
label: __("View in a new tab"),