Skip to content
This repository was archived by the owner on Dec 27, 2021. It is now read-only.

Commit 655fc8a

Browse files
committed
1.7.5
1 parent 2c3de70 commit 655fc8a

File tree

7 files changed

+20
-46
lines changed

7 files changed

+20
-46
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# История изменений
22

3+
## 1.7.5 <sup>29.05.2016</sup>
4+
- Добавлено: поддержка события `change` для тега `<input type="number">`.
5+
- Исправлено: выпадающий список селекта не раскрывался вверх в тех случаях, когда должен был.
6+
37
## 1.7.4 <sup>12.09.2015</sup>
48
- Исправлено: [#86](https://github.com/Dimox/jQueryFormStyler/pull/86).
59
- Исправлено: [#88](https://github.com/Dimox/jQueryFormStyler/pull/88).

MIT-LICENSE renamed to MIT-LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012-2015 Dimox
1+
Copyright (c) 2012-2016 Dimox
22
http://dimox.name/
33

44
Данная лицензия разрешает лицам, получившим копию данного программного обеспечения и сопутствующей документации (в дальнейшем именуемыми «Программное Обеспечение»), безвозмездно использовать Программное Обеспечение без ограничений, включая неограниченное право на использование, копирование, изменение, добавление, публикацию, распространение, сублицензирование и/или продажу копий Программного Обеспечения, также как и лицам, которым предоставляется данное Программное Обеспечение, при соблюдении следующих условий:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# jQuery Form Styler <sup>[1.7.4](https://github.com/Dimox/jQueryFormStyler/blob/master/CHANGELOG.md)</sup>
1+
# jQuery Form Styler <sup>[1.7.5](https://github.com/Dimox/jQueryFormStyler/blob/master/CHANGELOG.md)</sup>
22

33
jQuery-плагин для стилизации элементов HTML-форм:
44

@@ -16,4 +16,4 @@ jQuery-плагин для стилизации элементов HTML-форм
1616

1717
## Лицензия
1818

19-
[MIT](https://github.com/Dimox/jQueryFormStyler/blob/master/MIT-LICENSE)
19+
[MIT](https://github.com/Dimox/jQueryFormStyler/blob/master/MIT-LICENSE.md)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-form-styler",
3-
"version": "1.7.4",
3+
"version": "1.7.5",
44
"main": [
55
"jquery.formstyler.min.js",
66
"jquery.formstyler.css"

jquery.formstyler.js

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
* jQuery Form Styler v1.7.4
2+
* jQuery Form Styler v1.7.5
33
* https://github.com/Dimox/jQueryFormStyler
44
*
5-
* Copyright 2012-2015 Dimox (http://dimox.name/)
5+
* Copyright 2012-2016 Dimox (http://dimox.name/)
66
* Released under the MIT license.
77
*
8-
* Date: 2015.09.12
8+
* Date: 2016.05.29
99
*
1010
*/
1111

@@ -356,6 +356,8 @@
356356
}).on('mouseup mouseout', 'div.jq-number__spin', function() {
357357
clearTimeout(timeout);
358358
clearInterval(interval);
359+
}).on('mouseup', 'div.jq-number__spin', function() {
360+
el.change();
359361
});
360362
el.on('focus.styler', function() {
361363
number.addClass('focused');
@@ -557,7 +559,10 @@
557559
if (li.data('li-height') === undefined) li.data('li-height', li.outerHeight());
558560
var position = dropdown.css('top');
559561
if (dropdown.css('left') == 'auto') dropdown.css({left: 0});
560-
if (dropdown.css('top') == 'auto') dropdown.css({top: selectHeight});
562+
if (dropdown.css('top') == 'auto') {
563+
dropdown.css({top: selectHeight});
564+
position = selectHeight;
565+
}
561566
dropdown.hide();
562567

563568
// если выбран не дефолтный пункт

jquery.formstyler.min.js

Lines changed: 2 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-form-styler",
3-
"version": "1.7.4",
3+
"version": "1.7.5",
44
"description": "jQuery-плагин для стилизации элементов HTML-форм",
55
"main": [
66
"jquery.formstyler.min.js",

0 commit comments

Comments
 (0)