Make Account Center only usable when logged in
[blerg.git] / www / jssrc / blerg / Link.js
index 36cfb30..d4b9aec 100644 (file)
@@ -16,6 +16,8 @@ enyo.kind({
         this.setAttribute('href', this.href);
     },
     muteLink: function(inSender, inEvent) {
+        if (inEvent.which > 1)
+            return;
         inEvent.preventDefault();
         if (this.href != '#')
             location.href = this.href;