# HG changeset patch # User hamidouk # Date 1326374556 -3600 # Node ID 7eb41c26a8b78fce6b7de93f1d42e5fbcb6ed671 # Parent 116de1c38a7dd34f7a1e2865af4a9e10aa5e1c57 stricter equality check. diff -r 116de1c38a7d -r 7eb41c26a8b7 src/js/widgets/annotationsListWidget.js --- a/src/js/widgets/annotationsListWidget.js Thu Jan 12 13:15:34 2012 +0100 +++ b/src/js/widgets/annotationsListWidget.js Thu Jan 12 14:22:36 2012 +0100 @@ -33,7 +33,7 @@ /* filter the annotations whose type is not the one we want */ if (typeof(annotation.meta) !== "undefined" && typeof(annotation.meta["id-ref"]) !== "undefined" - && annotation.meta["id-ref"] != view_type) { + && annotation.meta["id-ref"] !== view_type) { continue; }