From a160e31c2ae12dc2a0329785d0d70fcfe188d70b Mon Sep 17 00:00:00 2001 From: Matt Novenstern Date: Thu, 24 Jun 2010 14:14:27 +0200 Subject: [PATCH] Fix missing semicolon in source title commit Just add the missing semicolon https://bugzilla.gnome.org/show_bug.cgi?id=622592 --- js/ui/messageTray.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index 90e9a78ed..7ff36cd8d 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -801,7 +801,7 @@ MessageTray.prototype = { _onSummaryItemClicked: function(summaryItem) { if (!this._clickedSummaryItem || this._clickedSummaryItem != summaryItem) - this._clickedSummaryItem = summaryItem + this._clickedSummaryItem = summaryItem; else this._clickedSummaryItem = null;