Igor Vaynberg
545fb8f307
Merge pull request #1092 from michalmarek/master
...
Czech translation
2013-03-25 19:34:41 -07:00
Michal Marek
7770fb7b15
Czech translation
...
Czech translation with inflection function from David Vallner (author
of Slovak translation)
2013-03-26 01:56:36 +01:00
Igor Vaynberg
5782e07ff8
modified version identifiers in descriptors for release 3.3.2
2013-03-25 12:14:18 -07:00
Igor Vaynberg
2843a4f21f
switch release to uglifyjs instead of closure
2013-03-25 12:13:45 -07:00
Igor Vaynberg
7a3d3dcd2b
Revert "Added ajax.transport support to default options"
...
This reverts commit 04a6535bd5
.
2013-03-25 09:17:19 -07:00
Igor Vaynberg
94c1706c67
clear off active class when closing. #1089
2013-03-25 08:57:35 -07:00
Igor Vaynberg
519070b11d
fix label focussing bug on ios. fixes #1008 .
2013-03-25 08:54:01 -07:00
Igor Vaynberg
45559654bc
fixes #1057
2013-03-25 08:54:01 -07:00
Igor Vaynberg
67fb12dc9e
Merge pull request #1086 from emodric/croatian_translation
...
Add Croatian translation
2013-03-25 08:24:29 -07:00
Edi Modrić
ed3a361581
Add Croatian translation
2013-03-25 13:34:31 +01:00
Igor Vaynberg
a624417556
Merge pull request #1083 from rvignacio/default_ajax.transport
...
Added ajax.transport default option
2013-03-23 21:22:34 -07:00
rvignacio
04a6535bd5
Added ajax.transport support to default options
2013-03-23 17:26:37 -03:00
Igor Vaynberg
74a2805dde
Merge pull request #1081 from gboer/patch-2
...
Fix for when you specify tags using JSON-encoded select2-tags-attribute.
2013-03-23 13:21:18 -07:00
gboer
ea39b25bf6
Update select2.js
...
Fix for when you specify tags using JSON-encoded select2-tags-attribute.
And thank you for properly implementing my (earlier) submitted hack :)
2013-03-23 15:05:16 +01:00
Igor Vaynberg
4a1c8491a7
Merge pull request #1075 from salimkayabasi/master
...
added turkish translation
2013-03-22 08:47:19 -07:00
Salim KAYABAŞI
30cdb9ced7
turkish translation added
2013-03-22 12:53:54 +02:00
norlin
c8cae0a6c9
fix initSelection with empty input value
2013-03-22 10:14:39 +04:00
Mihail
381f173e55
Use $.prop() to get "multiple" attribute
...
The string
opts.element.attr("multiple")
returns:
1) string "multiple" - if element have attribute multiple (<select name="..." multiple></select>)
2) undefined - if element have not attribute multiple (<select name="..."></select>)
It is written in the documentation:
"As of jQuery 1.6, the .attr() method returns undefined for attributes that have not been set."
"To retrieve and change DOM properties, use the .prop() method."
(http://api.jquery.com/attr/ )
I am propose use "prop" function. The string
opts.element.prop("multiple")
returns:
1) boolean "true" - if element have attribute multiple
2) boolean "false" - if element have not attribute multiple
After, the "multiple" variable use in check of the condition:
select2 = multiple ? new MultiSelect2() : new SingleSelect2();
Better use true/false variable value than "multiple"/undefined in this condition.
Tested in Opera 12 and IE 8.0.7601
2013-03-20 14:19:05 +02:00
Igor Vaynberg
b6186164fe
Merge pull request #1060 from bigmihail/patch-1
...
Ukrainian translation file
2013-03-19 14:19:50 -07:00
bigmihail
8c3f71145e
Create Ukrainian translation file
2013-03-19 22:58:59 +02:00
Igor Vaynberg
a425c124e1
Update README.md
2013-03-19 09:00:39 -07:00
Igor Vaynberg
d482a6ed6a
Update README.md
2013-03-19 08:54:47 -07:00
Igor Vaynberg
96ddc7ad4f
Update README.md
2013-03-19 08:53:36 -07:00
Igor Vaynberg
1de786b8da
Update README.md
2013-03-19 08:53:02 -07:00
Igor Vaynberg
1d2387f1e3
Merge pull request #1056 from dlx1986/bugfix
...
fix a bug when use multi
2013-03-19 08:30:38 -07:00
ZhongYou
6a58e99285
trigger "focus" event in focus function make chrome error:
...
"Uncaught RangeError: Maximum call stack size exceeded"
2013-03-19 18:01:12 +08:00
jfoster
7956d7aee3
Add option to automatically size dropdown width
2013-03-18 19:56:38 -04:00
Igor Vaynberg
6a29e594b6
Merge pull request #1052 from julen/eu-locale
...
Added Basque translation.
2013-03-18 08:18:49 -07:00
Julen Ruiz Aizpuru
2d636d5894
Added Basque translation.
2013-03-18 16:02:55 +01:00
Igor Vaynberg
4530e74e95
Merge pull request #1042 from JensRantil/fix-issue-1042
...
Bugfix: Avoid implosion of empty <option>s
2013-03-15 08:25:06 -07:00
Igor Vaynberg
cbc5106d80
Merge pull request #1043 from Smartik89/master
...
Romanian translation.
2013-03-15 08:18:59 -07:00
Smartik89
24eaac6819
Added Romanian translation
2013-03-15 13:26:42 +02:00
Jens Rantil
eac267b11f
Bugfix: Avoid implosion of empty <option>s
...
When using select2 on
<select>
<option value="empty"></option>
<option>Val 1</option>
<option>Val 2</option>
</select>
The top option will not have the correct height.
2013-03-15 11:15:03 +01:00
Igor Vaynberg
b826b7f5e3
Merge pull request #1035 from millimoose/master
...
Slovak localisation
2013-03-14 14:00:37 -07:00
David Vallner
e66344761b
Create Slovak localisation file
2013-03-14 21:42:54 +01:00
Igor Vaynberg
9acfc6faa5
prevent duplicate queries
2013-03-14 12:47:46 -07:00
Igor Vaynberg
3be8547584
added new loaded event. fixes #930
2013-03-14 12:00:06 -07:00
Igor Vaynberg
86a8190080
Loading icon doesn't disappear when using tags with auto tokenization. fixes #1005
2013-03-14 11:39:45 -07:00
Igor Vaynberg
b973b56cce
Calling select2('open') on multiple select shows 'No Matches Found'.
2013-03-14 11:31:11 -07:00
Igor Vaynberg
911a0bb082
prevent form from being submitted when enter is pressed in multiselect. fixes #961
2013-03-14 11:14:37 -07:00
Igor Vaynberg
dd34cc5d67
always show spinner during searching. fixes #950 fixes #943
2013-03-14 10:00:25 -07:00
Igor Vaynberg
fcce8aaba4
Merge pull request #1032 from JensRantil/make-inline-friendlier
...
Centering select2 vertically
2013-03-14 08:25:08 -07:00
Jens Rantil
518cdf8600
Centering select2 vertically
...
This makes Select2 behave much more sane when it's put inline inbetween
text.
2013-03-14 15:00:09 +01:00
Igor Vaynberg
f60c40d484
Merge pull request #1028 from JensRantil/swedish-translation
...
Swedish translation
2013-03-13 11:13:08 -07:00
Jens Rantil
75dd4a60ff
Swedish translation
2013-03-13 19:06:08 +01:00
Igor Vaynberg
95bbabe5a8
Merge pull request #1025 from JensRantil/enter-less-chars-fix
...
Minor grammar fix
2013-03-13 10:24:41 -07:00
Igor Vaynberg
3b6766c14e
Merge pull request #1026 from JensRantil/translation-process-improvements
...
Translation process improvements
2013-03-13 10:24:05 -07:00
Jens Rantil
84e5cbb154
Suggesting author header in translation files
...
This can be highly useful when a translation need to be updated and you
need to contact an older translator.
2013-03-13 18:01:28 +01:00
Jens Rantil
96d319f9d2
Mentioning i18n in README
...
Should probably be documented on http://ivaynberg.github.com/select2/ ,
too, but I'm not very much of a Jekyll dude.
2013-03-13 17:59:59 +01:00
Jens Rantil
54dbb825a8
Adding a translation template
...
This will make it easier to translate to other languages.
2013-03-13 17:52:17 +01:00