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

Commit 0577c89

Browse files
committed
Throttle sauce
1 parent 2bd35ba commit 0577c89

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Gruntfile.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ module.exports = (grunt) ->
108108
# username: process.env.SAUCE_USERNAME,
109109
# key: process.env.SAUCE_ACCESS_KEY,
110110
build: process.env.TRAVIS_JOB_ID
111-
# throttled: 12
111+
throttled: 8
112112
browsers: [
113113
{ browserName: "chrome", platform: "Windows 7" }
114114
{ browserName: "firefox", platform: "Windows 7" }

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ See also the [Change Log](https://github.com/mar10/jquery-ui-contextmenu/blob/ma
2424
## Demo
2525

2626
[Live demo page](http://wwwendt.de/tech/demo/jquery-contextmenu/demo/):
27-
[ ![sample](doc/teaser.png?raw=true) ](http://wwwendt.de/tech/demo/jquery-contextmenu/demo/ "Live demo")
27+
[ ![sample](demo/teaser.png?raw=true) ](http://wwwendt.de/tech/demo/jquery-contextmenu/demo/ "Live demo")
2828

2929

3030
## Example
@@ -407,27 +407,27 @@ Follwing a list of available menu definition properties:
407407
</dd>
408408
<dt>addClass</dt>
409409
<dd>
410-
Type: <code>String</code>, default: ""<br>
411-
Additional class to be added to the entries html element. Separate multiple
412-
classes with space.<br>
410+
Type: <code>String</code>, default: <code>""</code><br>
411+
Additional class name(s) to be added to the entries &ltli> element.
412+
Separate multiple class names with a space.<br>
413413
Custom CSS may be applied like <code>.ui-menu .my-class { color: red; }</code>.
414414
</dd>
415415
<dt>cmd</dt>
416416
<dd>
417-
Type: <code>String</code>, default: ""<br>
417+
Type: <code>String</code>, default: <code>""</code><br>
418418
Optional identifier associated with the menu entry.
419-
It can later be accessed in the *select* event by <code>ui.cmd</code>.
419+
It can later be accessed in the <i>select</i> event by <code>ui.cmd</code>.
420420
</dd>
421421
<dt>data</dt>
422422
<dd>
423-
Type: <code>Object</code>, default: {}<br>
424-
Optional hash of additional properties that will be added to the entries *data*
425-
attribute.<br>
426-
It can later be accessed in the *select* event by <code>ui.item.data()</code>.
423+
Type: <code>Object</code>, default: <code>{}</code><br>
424+
Optional hash of additional properties that will be added to the entry's
425+
<i>data</i> attribute.<br>
426+
It can later be accessed in the <i>select</i> event as <code>ui.item.data()</code>.
427427
</dd>
428428
<dt>disabled</dt>
429429
<dd>
430-
Type: <code>Boolean</code>, default: false<br>
430+
Type: <code>Boolean</code>, default: <code>false</code><br>
431431
Pass <i>true</i> to disable the entry.
432432
</dd>
433433
<dt>title</dt>
@@ -442,7 +442,7 @@ Follwing a list of available menu definition properties:
442442
If defined, an icon is added to the menu entry. For example passing
443443
<code>"ui-icon-copy"</code> will generate this element:
444444
<code>&lt;span class='ui-icon ui-icon-copy' /></code>.<br>
445-
See also [Icon Overview](http://api.jqueryui.com/theming/icons/).
445+
See also <<a href="http://api.jqueryui.com/theming/icons/">Icon Overview</a>.
446446
</dd>
447447
448448
</dl>

0 commit comments

Comments
 (0)