From 1f86edbfbf04621baf7234223a6cc1f1fe6cda59 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Tue, 20 Jan 2015 12:47:19 -0800 Subject: [PATCH] Remove console.log from entityList.html --- examples/html/entityList.html | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/html/entityList.html b/examples/html/entityList.html index 6e7795a3f0..01061f1eb0 100644 --- a/examples/html/entityList.html +++ b/examples/html/entityList.html @@ -101,7 +101,6 @@ currentSortColumn = column; currentSortOrder = "asc"; } - console.log(currentSortColumn, currentSortOrder); elSortOrder[column].innerHTML = currentSortOrder == "asc" ? ASC_STRING : DESC_STRING; entityList.sort(currentSortColumn, { order: currentSortOrder }); }