Skip to content

Commit 59d26c2

Browse files
Update readme
1 parent 576a32e commit 59d26c2

7 files changed

+14
-8
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ $.contextMenu is published under the [MIT license](http://www.opensource.org/lic
103103
### Unreleased ###
104104

105105
* __The Next version will change the default names of the icon classes in order to stop CSS conflicts with frameworks which define the class 'icon'.__ In order to keep the icon names the same as before this change you can change the defaults on the classnames for the icons ([docs on classNames option](http://swisnl.github.io/jQuery-contextMenu/docs.html#options-classNames)). The classnames will probably be "context-menu-icon-*" as proposed earlier by @rodneyrehm.
106-
106+
* Added gulp command (integration-test-paths) to change the paths in the integration tests to the correct path after they are overwritten by the documentation generator.
107+
* Make sure the contextmenu is not outside the client area by (thanks to @arai-a)
108+
* Update jQuery dependecy so that it will not result in double installation of jQuery when using npm (thanks to @fredericlb)
107109

108110
### 1.9.1 (October 11th 2015) ###
109111

dist/jquery.contextMenu.css

+1-1
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: 2015-10-11T18:22:59.127Z
14+
* Date: 2015-10-24T12:55:05.846Z
1515
*/
1616

1717
.context-menu-list {

dist/jquery.contextMenu.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* MIT License http://www.opensource.org/licenses/mit-license
1313
* GPL v3 http://opensource.org/licenses/GPL-3.0
1414
*
15-
* Date: 2015-10-11T18:23:00.141Z
15+
* Date: 2015-10-24T12:55:06.758Z
1616
*/
1717

1818
(function (factory) {
@@ -183,6 +183,10 @@
183183
offset.left -= width;
184184
}
185185

186+
if (offset.left < 0) {
187+
offset.left = 0;
188+
}
189+
186190
opt.$menu.css(offset);
187191
},
188192
// position the sub-menu

dist/jquery.contextMenu.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.contextMenu.min.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.contextMenu.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.contextMenu.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)