From b79bf4ab1757eb08f7209f158f1f3a386ace8c96 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Wed, 12 Jan 2011 14:47:29 -0500 Subject: javascript lint cleanup --- install/static/search.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'install/static/search.js') diff --git a/install/static/search.js b/install/static/search.js index 613d24a82..2fb4be13e 100644 --- a/install/static/search.js +++ b/install/static/search.js @@ -222,9 +222,9 @@ function ipa_search_widget(spec) { var summary = $('span[name=summary]', that.tfoot); if (data.result.truncated) { summary.text( - 'Query returned results than configured size limit will show.' + - 'First ' + data.result.count + ' results shown.' - ); + 'Query returned more results than configured size limit '+ + 'will show. First ' + + data.result.count + ' results shown.'); } else { summary.text(data.result.summary); } @@ -239,8 +239,8 @@ function ipa_search_widget(spec) { var filter = $.bbq.getState(that.entity_name + '-filter', true) || ''; ipa_cmd( - 'find', [filter], {all: true}, on_success, on_error, that.entity_name - ); + 'find', [filter], {all: true}, on_success, on_error, + that.entity_name); }; return that; @@ -311,7 +311,7 @@ function ipa_search_facet(spec) { state[that.entity_name + '-pkey'] = value; $.bbq.pushState(state); return false; - } + }; }(value) }).appendTo(container); }; -- cgit