From 30a6125e3b663929c3eae58b1687c4fbaaf71c37 Mon Sep 17 00:00:00 2001 From: Sanj Date: Sat, 28 Jan 2012 19:11:55 +0530 Subject: [PATCH] fix the ugly object_id bug --- itf/static/js/insidepage.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/itf/static/js/insidepage.js b/itf/static/js/insidepage.js index d8ba4c7..1670009 100755 --- a/itf/static/js/insidepage.js +++ b/itf/static/js/insidepage.js @@ -297,7 +297,8 @@ $(function() { History.pushState(formData, "", urlString); $.getJSON("/m/get_list", formData, function(data) { stopListLoading(data); - displayList(data.items); + displayList(data.items); + $('#object_id').val(''); }); });