Merge pull request #2909 from ericdahl/docs-brackets
Docs: typo cleanup
This commit is contained in:
commit
0424d97396
@ -312,7 +312,7 @@ $("select").select2({
|
||||
<p>
|
||||
When working with array and AJAX data in the past, Select2 allowed a
|
||||
custom <code>id</code> function or attribute to be set in various places,
|
||||
ranging from the initializion of Select2 to when the remote data was being
|
||||
ranging from the initialization of Select2 to when the remote data was being
|
||||
returned. This allowed Select2 to better integrate with existing data
|
||||
sources that did not necessarily use the <code>id</code> attribute to
|
||||
indicate the unique identifier for an object.
|
||||
|
@ -622,7 +622,7 @@ $(".js-example-diacritics").select2();
|
||||
|
||||
<p>
|
||||
Select2 supports displaying the messages in different languages, as well
|
||||
as provding your own
|
||||
as providing your own
|
||||
<a href="options.html#language">custom messages</a>
|
||||
that can be displayed.
|
||||
</p>
|
||||
|
@ -81,7 +81,7 @@ slug: home
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
Initialize Select2 on the <code>>select<</code> element that you
|
||||
Initialize Select2 on the <code><select></code> element that you
|
||||
want to make awesome.
|
||||
|
||||
<pre class="code">
|
||||
|
@ -20,7 +20,7 @@ slug: options
|
||||
|
||||
<p>
|
||||
Select2 will automatically apply decorators to any adapters which have not
|
||||
been manually overriden. The only time you need to decorate adapters is
|
||||
been manually overridden. The only time you need to decorate adapters is
|
||||
when you are using third-party adapters not provided by Select2, or you
|
||||
are using features not provided in the Select2 core. You can apply a
|
||||
decorator to an adapter using the
|
||||
@ -570,7 +570,7 @@ ajax: {
|
||||
</h2>
|
||||
|
||||
<p>
|
||||
Select2 can place the dropdown directly after the selection cotainer, so
|
||||
Select2 can place the dropdown directly after the selection container, so
|
||||
it will appear in the same location within the DOM as the rest of Select2.
|
||||
</p>
|
||||
|
||||
@ -683,7 +683,7 @@ ajax: {
|
||||
adapters. You can change almost anything involving the way Select2 works
|
||||
to the way Select2 interacts with the page by modifying the core adapters.
|
||||
Most third-party plugins should provide decorators (used to wrap adapters)
|
||||
and custom adpaters that you can use.
|
||||
and custom adapters that you can use.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
@ -813,7 +813,7 @@ SelectionAdapter.update = function (data) { };
|
||||
// what options within the results are selected.
|
||||
//
|
||||
// @param callback A function that should be called when the current selection
|
||||
// has been retrieved. The first paramter to the function should be an array
|
||||
// has been retrieved. The first parameter to the function should be an array
|
||||
// of data objects.
|
||||
DataAdapter.current = function (callback) {
|
||||
callback(currentData);
|
||||
@ -867,7 +867,7 @@ DataAdapter.query = function (params, callback) {
|
||||
The results adapter controls the list of results that the user can select
|
||||
from. While the results adapter does not define any additional methods
|
||||
that must be implemented, it makes extensive use of the Select2 event
|
||||
system for cotrolling the display of results and messages.
|
||||
system for controlling the display of results and messages.
|
||||
</p>
|
||||
|
||||
<dl class="dl-horizontal">
|
||||
|
Loading…
Reference in New Issue
Block a user