From 31d6966296d86a629163f67df58e6cc8bb74a1c0 Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Wed, 9 Jan 2013 11:40:17 -0500 Subject: [PATCH] Do not redefine mod in inspector, fixes jshint --- js/id/ui/inspector.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/id/ui/inspector.js b/js/id/ui/inspector.js index 85fa70e68..f0ee956a4 100644 --- a/js/id/ui/inspector.js +++ b/js/id/ui/inspector.js @@ -151,12 +151,12 @@ iD.Inspector = function() { if (en.on_node) types.push('point'); if (en.on_way) types.push('line'); en.types = types; - var mod = iD.modal(); - mod.select('.content') + iD.modal() + .select('.content') .datum(en) .call(iD.tagReference); } else { - var mod = iD.flash() + iD.flash() .select('.content') .text('This is no documentation available for this tag combination'); }