summaryrefslogtreecommitdiffstats
path: root/install/static/search.js
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-01-12 14:47:29 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2011-01-12 21:47:05 -0500
commitb79bf4ab1757eb08f7209f158f1f3a386ace8c96 (patch)
tree53ae8597469de4481d35a36e29172fa2cd4cf17d /install/static/search.js
parent4da9228fb2ac34adab8eb1884ae414236adb84fa (diff)
downloadfreeipa-b79bf4ab1757eb08f7209f158f1f3a386ace8c96.tar.gz
freeipa-b79bf4ab1757eb08f7209f158f1f3a386ace8c96.tar.xz
freeipa-b79bf4ab1757eb08f7209f158f1f3a386ace8c96.zip
javascript lint cleanup
Diffstat (limited to 'install/static/search.js')
-rw-r--r--install/static/search.js12
1 files changed, 6 insertions, 6 deletions
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);
};