From 562a16189672795fad7bba220c0418e847bc6358 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Sat, 26 Jan 2013 21:49:02 -0500 Subject: [PATCH] Remove unused --- js/id/util.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/js/id/util.js b/js/id/util.js index a9ccd104f..da31a162b 100644 --- a/js/id/util.js +++ b/js/id/util.js @@ -6,14 +6,6 @@ iD.util.trueObj = function(arr) { return o; }; -iD.util.codeWindow = function(content) { - top.win = window.open('','contentWindow', - 'width=350,height=350,menubar=0' + - ',toolbar=1,status=0,scrollbars=1,resizable=1'); - top.win.document.writeln('
' + content + '
'); - top.win.document.close(); -}; - iD.util.tagText = function(entity) { return d3.entries(entity.tags).map(function(e) { return e.key + ': ' + e.value;