Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 62d1509

Browse files
committed
Regenerate dist and update changelog
1 parent 41642c9 commit 62d1509

12 files changed

Lines changed: 14 additions & 11 deletions

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
### Unreleased
44

5+
#### Fixed
6+
57
* ContextMenu appears with wrong position ([Issue #502](https://github.com/swisnl/jQuery-contextMenu/issues/502) thanks @apptaro
8+
* Check if given selected value is a 0, if it is a zero so return it as is. Thanks @Falseee
69

710
### 2.4.4
811

dist/font/context-menu-icons.eot

0 Bytes
Binary file not shown.

dist/font/context-menu-icons.ttf

0 Bytes
Binary file not shown.

dist/font/context-menu-icons.woff

0 Bytes
Binary file not shown.

dist/font/context-menu-icons.woff2

-12 Bytes
Binary file not shown.

dist/jquery.contextMenu.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Licensed under
1313
* MIT License http://www.opensource.org/licenses/mit-license
1414
*
15-
* Date: 2017-04-03T15:01:05.849Z
15+
* Date: 2017-04-03T15:10:39.288Z
1616
*/
1717
@-webkit-keyframes cm-spin {
1818
0% {
@@ -54,8 +54,8 @@
5454
font-style: normal;
5555
font-weight: normal;
5656

57-
src: url("font/context-menu-icons.eot?18z68");
58-
src: url("font/context-menu-icons.eot?18z68#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?18z68") format("woff2"), url("font/context-menu-icons.woff?18z68") format("woff"), url("font/context-menu-icons.ttf?18z68") format("truetype");
57+
src: url("font/context-menu-icons.eot?3a3vu");
58+
src: url("font/context-menu-icons.eot?3a3vu#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?3a3vu") format("woff2"), url("font/context-menu-icons.woff?3a3vu") format("woff"), url("font/context-menu-icons.ttf?3a3vu") format("truetype");
5959
}
6060

6161
.context-menu-icon-add:before {

dist/jquery.contextMenu.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Licensed under
1212
* MIT License http://www.opensource.org/licenses/mit-license
1313
*
14-
* Date: 2017-04-03T15:01:05.302Z
14+
* Date: 2017-04-03T15:10:38.606Z
1515
*/
1616

1717
// jscs:disable
@@ -1429,7 +1429,7 @@
14291429
break;
14301430

14311431
case 'select':
1432-
item.$input.val(item.selected || '');
1432+
item.$input.val((item.selected === 0 ? "0" : item.selected) || '');
14331433
break;
14341434
}
14351435
}

dist/jquery.contextMenu.min.css

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

0 commit comments

Comments
 (0)