mirror of
https://github.com/apache/lucene.git
synced 2025-02-28 21:39:25 +00:00
SOLR-1100 - Typo fixes for solrjs docs
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@786134 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b655f5c32b
commit
11f801ed8d
@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* <p> Autocomplete input filed that suggests facet values. It can show facet values of multiple
|
||||
* <p> Autocomplete input field that suggests facet values. It can show facet values of multiple
|
||||
* fields (specified by "fieldNames"), as well as perform a fulltext query ("fulltextFieldName")
|
||||
* in case no suggested value is selected. </p>
|
||||
*
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* A calenader facet field. it uses solr's date facet capabilities, and displays
|
||||
* A calendar facet field. it uses solr's date facet capabilities, and displays
|
||||
* the document count of one day using the DHTML calendar from www.dynarch.com/projects/calendar
|
||||
*
|
||||
* @class CalendarWidget
|
||||
@ -91,7 +91,7 @@ jQuery.solrjs.CalendarWidget = jQuery.solrjs.createClass ("AbstractClientSideWid
|
||||
cal.show();
|
||||
cal.setDate(new Date(1987, 2, 1));
|
||||
|
||||
// override pribt method to display document count
|
||||
// override print method to display document count
|
||||
var oldPrint = Date.prototype.print;
|
||||
Date.prototype.print = function(string) {
|
||||
if (string.indexOf("solrjs") == -1) {
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* A simple facet widteh that shows the facet values as list. It remembers the selection
|
||||
* A simple facet widget that shows the facet values as list. It remembers the selection
|
||||
* and shows a "value(x)" label after selection.
|
||||
*
|
||||
* @class ExtensibleResultWidget
|
||||
|
@ -48,7 +48,7 @@ jQuery.solrjs.TagcloudWidget = jQuery.solrjs.createClass ("AbstractClientSideWid
|
||||
jQuery(this.target).empty();
|
||||
|
||||
if (values.length == 0) {
|
||||
jQuery("<div/>").html("not items found in current selection").appendTo(this.target);
|
||||
jQuery("<div/>").html("no items found in current selection").appendTo(this.target);
|
||||
}
|
||||
|
||||
var maxCount = 0;
|
||||
|
@ -50,7 +50,7 @@ jQuery.solrjs.AbstractServerSideWidget = jQuery.solrjs.createClass ("AbstractWid
|
||||
},
|
||||
|
||||
/**
|
||||
* The default behaviour is that the result of teh template is simply "copied" to the target div.
|
||||
* The default behaviour is that the result of the template is simply "copied" to the target div.
|
||||
*
|
||||
* @param result The result of the velocity template wrapped inside a javascript object.
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user