Skip to content

Commit 5c9287e

Browse files
committed
Merge pull request swisnl#263 from swisnl/issue-257
Issue 257
2 parents eafa3b9 + 930a145 commit 5c9287e

39 files changed

+152
-147
lines changed

README.md

+32-31
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
---
44

5-
> [**This repository is looking for a new maintainer**](https://github.com/medialize/jQuery-contextMenu/issues/257)
5+
> [**This repository now has a new maintainer**](https://github.com/swisnl/jQuery-contextMenu/issues/257)
66
77
---
88

9-
[![Travis Build Status](https://travis-ci.org/medialize/jQuery-contextMenu.svg?branch=master)](https://travis-ci.org/medialize/jQuery-contextMenu)
9+
[![Travis Build Status](https://travis-ci.org/swisnl/jQuery-contextMenu.svg?branch=master)](https://travis-ci.org/swisnl/jQuery-contextMenu)
1010

1111
$.contextMenu is a management facility for - you guessed it - context menus. It was designed for an application where there are hundreds of elements that may show a context menu - so intialization speed and memory usage are kept fairly small. It also allows to register context menus without providing actual markup, as $.contextMenu generates DOMElements as needed.
1212

13-
[features](http://medialize.github.com/jQuery-contextMenu/index.html) -
14-
[demo](http://medialize.github.com/jQuery-contextMenu/demo.html) -
15-
[documentation](http://medialize.github.com/jQuery-contextMenu/docs.html)
13+
[features](http://swisnl.github.io/jQuery-contextMenu/index.html) -
14+
[demo](http://swisnl.github.io/jQuery-contextMenu/demo.html) -
15+
[documentation](http://swisnl.github.io/jQuery-contextMenu/docs.html)
1616

1717

1818
## Dependencies ##
@@ -37,7 +37,7 @@ $.contextMenu({
3737
});
3838
```
3939

40-
have a look at the [demos](http://medialize.github.com/jQuery-contextMenu/demo.html).
40+
have a look at the [demos](http://swisnl.github.io/jQuery-contextMenu/demo.html).
4141

4242

4343
## HTML5 Compatibility ##
@@ -90,16 +90,17 @@ use [Google Closure Compiler](http://closure-compiler.appspot.com/home):
9090
// ==ClosureCompiler==
9191
// @compilation_level SIMPLE_OPTIMIZATIONS
9292
// @output_file_name contextMenu.js
93-
// @code_url http://medialize.github.com/jQuery-contextMenu/jquery-1.8.2.min.js
94-
// @code_url http://medialize.github.com/jQuery-contextMenu/src/jquery.ui.position.js
95-
// @code_url http://medialize.github.com/jQuery-contextMenu/src/jquery.contextMenu.js
93+
// @code_url http://swisnl.github.io/jQuery-contextMenu/jquery-1.8.2.min.js
94+
// @code_url http://swisnl.github.io/jQuery-contextMenu/src/jquery.ui.position.js
95+
// @code_url http://swisnl.github.io/jQuery-contextMenu/src/jquery.contextMenu.js
9696
// ==/ClosureCompiler==
9797
```
9898

9999

100100
## Authors ##
101101

102-
* [Rodney Rehm](https://github.com/rodneyrehm)
102+
* [Björn Brala](https://github.com/swisnl)
103+
* [Rodney Rehm](https://github.com/rodneyrehm) (original creator)
103104
* [Christiaan Baartse](https://github.com/christiaan) (single callback per menu)
104105
* [Addy Osmani](https://github.com/addyosmani) (compatibility with native context menu in Firefox 8)
105106

@@ -122,15 +123,15 @@ $.contextMenu is published under the [MIT license](http://www.opensource.org/lic
122123

123124
### 1.6.5 (January 20th 2013) ###
124125

125-
* fixing "opening a second menu can break the layer" - ([Issue #105](https://github.com/medialize/jQuery-contextMenu/issues/105))
126+
* fixing "opening a second menu can break the layer" - ([Issue #105](https://github.com/swisnl/jQuery-contextMenu/issues/105))
126127

127128
### 1.6.4 (January 19th 2013) ###
128129

129-
* fixing [jQuery plugin manifest](https://github.com/medialize/jQuery-contextMenu/commit/413b1ecaba0aeb4e50f97cee35f7c367435e7830#commitcomment-2465216), again. yep. I'm that kind of a guy. :(
130+
* fixing [jQuery plugin manifest](https://github.com/swisnl/jQuery-contextMenu/commit/413b1ecaba0aeb4e50f97cee35f7c367435e7830#commitcomment-2465216), again. yep. I'm that kind of a guy. :(
130131

131132
### 1.6.3 (January 19th 2013) ###
132133

133-
* fixing [jQuery plugin manifest](https://github.com/medialize/jQuery-contextMenu/commit/413b1ecaba0aeb4e50f97cee35f7c367435e7830#commitcomment-2465216)
134+
* fixing [jQuery plugin manifest](https://github.com/swisnl/jQuery-contextMenu/commit/413b1ecaba0aeb4e50f97cee35f7c367435e7830#commitcomment-2465216)
134135

135136
### 1.6.2 (January 19th 2013) ###
136137

@@ -141,36 +142,36 @@ $.contextMenu is published under the [MIT license](http://www.opensource.org/lic
141142
* fixing potential html parsing problem
142143
* upgrading to jQuery UI position v1.10.0
143144
* replaced `CRLF` by `LF` (no idea how this happened in the first place...)
144-
* adding `options.reposition` to dis/allow simply relocating a menu instead of rebuilding it ([Issue #104](https://github.com/medialize/jQuery-contextMenu/issues/104))
145+
* adding `options.reposition` to dis/allow simply relocating a menu instead of rebuilding it ([Issue #104](https://github.com/swisnl/jQuery-contextMenu/issues/104))
145146

146147
### 1.6.0 (December 29th 2012) ###
147148

148-
* adding [DOM Element bound context menus](http://medialize.github.com/jQuery-contextMenu/demo/on-dom-element.html) - ([Issue 88](https://github.com/medialize/jQuery-contextMenu/issues/88))
149-
* adding class `context-menu-active` to define state on active trigger element - ([Issue 92](https://github.com/medialize/jQuery-contextMenu/issues/92))
150-
* adding [demo for TouchSwipe](http://medialize.github.com/jQuery-contextMenu/demo/trigger-swipe.html) activation
151-
* adding export of internal functions and event handlers - ([Issue 101](https://github.com/medialize/jQuery-contextMenu/issues/101))
152-
* fixing key "watch" might translate to Object.prototype.watch in callbacks map - ([Issue 93](https://github.com/medialize/jQuery-contextMenu/issues/93))
153-
* fixing menu and submenu width calculation - ([Issue 18](https://github.com/medialize/jQuery-contextMenu/issues/18))
154-
* fixing unused variables - ([Issue 100](https://github.com/medialize/jQuery-contextMenu/issues/100))
155-
* fixing iOS "click" compatibility problem - ([Issue 83](https://github.com/medialize/jQuery-contextMenu/issues/83))
156-
* fixing separators to not be clickable - ([Issue 85](https://github.com/medialize/jQuery-contextMenu/issues/85))
157-
* fixing issues with fixed positioned triggers ([Issue 95](https://github.com/medialize/jQuery-contextMenu/issues/95))
158-
* fixing word break problem - ([Issue 80](https://github.com/medialize/jQuery-contextMenu/issues/80))
149+
* adding [DOM Element bound context menus](http://swisnl.github.io/jQuery-contextMenu/demo/on-dom-element.html) - ([Issue 88](https://github.com/swisnl/jQuery-contextMenu/issues/88))
150+
* adding class `context-menu-active` to define state on active trigger element - ([Issue 92](https://github.com/swisnl/jQuery-contextMenu/issues/92))
151+
* adding [demo for TouchSwipe](http://swisnl.github.io/jQuery-contextMenu/demo/trigger-swipe.html) activation
152+
* adding export of internal functions and event handlers - ([Issue 101](https://github.com/swisnl/jQuery-contextMenu/issues/101))
153+
* fixing key "watch" might translate to Object.prototype.watch in callbacks map - ([Issue 93](https://github.com/swisnl/jQuery-contextMenu/issues/93))
154+
* fixing menu and submenu width calculation - ([Issue 18](https://github.com/swisnl/jQuery-contextMenu/issues/18))
155+
* fixing unused variables - ([Issue 100](https://github.com/swisnl/jQuery-contextMenu/issues/100))
156+
* fixing iOS "click" compatibility problem - ([Issue 83](https://github.com/swisnl/jQuery-contextMenu/issues/83))
157+
* fixing separators to not be clickable - ([Issue 85](https://github.com/swisnl/jQuery-contextMenu/issues/85))
158+
* fixing issues with fixed positioned triggers ([Issue 95](https://github.com/swisnl/jQuery-contextMenu/issues/95))
159+
* fixing word break problem - ([Issue 80](https://github.com/swisnl/jQuery-contextMenu/issues/80))
159160

160161
### 1.5.25 (October 8th 2012) ###
161162

162-
* upgrading to jQuery 1.8.2 ([Issue 78](https://github.com/medialize/jQuery-contextMenu/issues/78))
163-
* upgrading to jQuery UI position 1.9.0 RC1 ([Issue 78](https://github.com/medialize/jQuery-contextMenu/issues/78))
163+
* upgrading to jQuery 1.8.2 ([Issue 78](https://github.com/swisnl/jQuery-contextMenu/issues/78))
164+
* upgrading to jQuery UI position 1.9.0 RC1 ([Issue 78](https://github.com/swisnl/jQuery-contextMenu/issues/78))
164165

165166
### 1.5.24 (August 30th 2012) ###
166167

167-
* adding context menu options to input command events ([Issue 72](https://github.com/medialize/jQuery-contextMenu/issues/72), dtex)
168+
* adding context menu options to input command events ([Issue 72](https://github.com/swisnl/jQuery-contextMenu/issues/72), dtex)
168169
* code cosmetics for JSLint
169170

170171
### 1.5.23 (August 22nd 2012) ###
171172

172-
* fixing reposition/close issue on scrolled documents ([Issue 69](https://github.com/medialize/jQuery-contextMenu/issues/69))
173-
* fixing jQuery reference ([Issue 68](https://github.com/medialize/jQuery-contextMenu/issues/68))
173+
* fixing reposition/close issue on scrolled documents ([Issue 69](https://github.com/swisnl/jQuery-contextMenu/issues/69))
174+
* fixing jQuery reference ([Issue 68](https://github.com/swisnl/jQuery-contextMenu/issues/68))
174175

175176
### 1.5.22 (July 16th 2012) ###
176177

@@ -282,7 +283,7 @@ Note: git tag of version is missing...?!
282283

283284
### 1.5 (December 13th 2011) ###
284285

285-
* Added [dynamic menu creation](http://medialize.github.com/jQuery-contextMenu/demo/dynamic-create.html) (Issue #15)
286+
* Added [dynamic menu creation](http://swisnl.github.io/jQuery-contextMenu/demo/dynamic-create.html) (Issue #15)
286287

287288
### 1.4.4 (December 12th 2011) ###
288289

bower.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
"name": "jQuery-contextMenu",
33
"version": "1.6.7",
44
"main": ["src/jquery.contextMenu.js", "src/jquery.ui.position.js", "src/jquery.contextMenu.css", "src/images/*.png"],
5-
"homepage": "http://medialize.github.com/jQuery-contextMenu/",
5+
"homepage": "http://swisnl.github.io/jQuery-contextMenu/",
66
"authors": [
7+
"Björn Brala <[email protected]> (http://www.swis.nl)",
78
"Rodney Rehm <[email protected]> (http://rodneyrehm.de/en)"
89
],
910
"description": "Full featured context menu handler capable of handling thousands of elements",
@@ -22,4 +23,4 @@
2223
"/*.css",
2324
"/*.js"
2425
]
25-
}
26+
}

contextMenu.jquery.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@
1212
],
1313
"version": "git-master",
1414
"author": {
15-
"name": "Rodney Rehm",
16-
"url": "http://rodneyrehm.de/en/"
15+
"name": "Björn Brala (SWIS.nl)",
16+
"url": "http://www.swis.nl"
1717
},
1818
"licenses": [
1919
{
2020
"type": "MIT",
2121
"url": "https://github.com/jquery/jquery-color/blob/2.1.2/MIT-LICENSE.txt"
2222
}
2323
],
24-
"bugs": "https://github.com/medialize/jQuery-contextMenu/issues",
25-
"homepage": "http://medialize.github.com/jQuery-contextMenu/",
26-
"docs": "http://medialize.github.com/jQuery-contextMenu/docs.html",
24+
"bugs": "https://github.com/swisnl/jQuery-contextMenu/issues",
25+
"homepage": "http://swisnl.github.io/jQuery-contextMenu/",
26+
"docs": "http://swisnl.github.io/jQuery-contextMenu/docs.html",
2727
"dependencies": {
2828
"jquery": ">=1.7"
2929
}

demo.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020

2121
var _gaq = _gaq || [];
22-
_gaq.push(['_setAccount', 'UA-8922143-3']);
22+
_gaq.push(['_setAccount', 'UA-66438984-1']);
2323
_gaq.push(['_trackPageview']);
2424

2525
(function() {
@@ -31,9 +31,9 @@
3131
</script>
3232
</head>
3333
<body>
34-
<a id="github-forkme" href="https://github.com/medialize/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
34+
<a id="github-forkme" href="https://github.com/swisnl/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
3535
<div id="container">
36-
<h1><a href="https://github.com/medialize/jQuery-contextMenu">jQuery contextMenu</a></h1>
36+
<h1><a href="https://github.com/swisnl/jQuery-contextMenu">jQuery contextMenu</a></h1>
3737

3838
<ul class="menu">
3939
<li><a href="index.html">About</a></li>

demo/accesskeys.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020

2121
var _gaq = _gaq || [];
22-
_gaq.push(['_setAccount', 'UA-8922143-3']);
22+
_gaq.push(['_setAccount', 'UA-66438984-1']);
2323
_gaq.push(['_trackPageview']);
2424

2525
(function() {
@@ -31,9 +31,9 @@
3131
</script>
3232
</head>
3333
<body>
34-
<a id="github-forkme" href="https://github.com/medialize/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
34+
<a id="github-forkme" href="https://github.com/swisnl/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
3535
<div id="container">
36-
<h1><a href="https://github.com/medialize/jQuery-contextMenu">jQuery contextMenu</a></h1>
36+
<h1><a href="https://github.com/swisnl/jQuery-contextMenu">jQuery contextMenu</a></h1>
3737

3838
<ul class="menu">
3939
<li><a href="../index.html">About</a></li>

demo/accesskeys_test.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020

2121
var _gaq = _gaq || [];
22-
_gaq.push(['_setAccount', 'UA-8922143-3']);
22+
_gaq.push(['_setAccount', 'UA-66438984-1']);
2323
_gaq.push(['_trackPageview']);
2424

2525
(function() {
@@ -31,9 +31,9 @@
3131
</script>
3232
</head>
3333
<body>
34-
<a id="github-forkme" href="https://github.com/medialize/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
34+
<a id="github-forkme" href="https://github.com/swisnl/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
3535
<div id="container">
36-
<h1><a href="https://github.com/medialize/jQuery-contextMenu">jQuery contextMenu</a></h1>
36+
<h1><a href="https://github.com/swisnl/jQuery-contextMenu">jQuery contextMenu</a></h1>
3737

3838
<ul class="menu">
3939
<li><a href="../index.html">About</a></li>

demo/async-create.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020

2121
var _gaq = _gaq || [];
22-
_gaq.push(['_setAccount', 'UA-8922143-3']);
22+
_gaq.push(['_setAccount', 'UA-66438984-1']);
2323
_gaq.push(['_trackPageview']);
2424

2525
(function() {
@@ -31,9 +31,9 @@
3131
</script>
3232
</head>
3333
<body>
34-
<a id="github-forkme" href="https://github.com/medialize/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
34+
<a id="github-forkme" href="https://github.com/swisnl/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
3535
<div id="container">
36-
<h1><a href="https://github.com/medialize/jQuery-contextMenu">jQuery contextMenu</a></h1>
36+
<h1><a href="https://github.com/swisnl/jQuery-contextMenu">jQuery contextMenu</a></h1>
3737

3838
<ul class="menu">
3939
<li><a href="../index.html">About</a></li>

demo/callback.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020

2121
var _gaq = _gaq || [];
22-
_gaq.push(['_setAccount', 'UA-8922143-3']);
22+
_gaq.push(['_setAccount', 'UA-66438984-1']);
2323
_gaq.push(['_trackPageview']);
2424

2525
(function() {
@@ -31,9 +31,9 @@
3131
</script>
3232
</head>
3333
<body>
34-
<a id="github-forkme" href="https://github.com/medialize/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
34+
<a id="github-forkme" href="https://github.com/swisnl/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
3535
<div id="container">
36-
<h1><a href="https://github.com/medialize/jQuery-contextMenu">jQuery contextMenu</a></h1>
36+
<h1><a href="https://github.com/swisnl/jQuery-contextMenu">jQuery contextMenu</a></h1>
3737

3838
<ul class="menu">
3939
<li><a href="../index.html">About</a></li>

demo/callback_test.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020

2121
var _gaq = _gaq || [];
22-
_gaq.push(['_setAccount', 'UA-8922143-3']);
22+
_gaq.push(['_setAccount', 'UA-66438984-1']);
2323
_gaq.push(['_trackPageview']);
2424

2525
(function() {
@@ -31,9 +31,9 @@
3131
</script>
3232
</head>
3333
<body>
34-
<a id="github-forkme" href="https://github.com/medialize/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
34+
<a id="github-forkme" href="https://github.com/swisnl/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
3535
<div id="container">
36-
<h1><a href="https://github.com/medialize/jQuery-contextMenu">jQuery contextMenu</a></h1>
36+
<h1><a href="https://github.com/swisnl/jQuery-contextMenu">jQuery contextMenu</a></h1>
3737

3838
<ul class="menu">
3939
<li><a href="../index.html">About</a></li>

demo/custom-command.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020

2121
var _gaq = _gaq || [];
22-
_gaq.push(['_setAccount', 'UA-8922143-3']);
22+
_gaq.push(['_setAccount', 'UA-66438984-1']);
2323
_gaq.push(['_trackPageview']);
2424

2525
(function() {
@@ -31,9 +31,9 @@
3131
</script>
3232
</head>
3333
<body>
34-
<a id="github-forkme" href="https://github.com/medialize/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
34+
<a id="github-forkme" href="https://github.com/swisnl/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
3535
<div id="container">
36-
<h1><a href="https://github.com/medialize/jQuery-contextMenu">jQuery contextMenu</a></h1>
36+
<h1><a href="https://github.com/swisnl/jQuery-contextMenu">jQuery contextMenu</a></h1>
3737

3838
<ul class="menu">
3939
<li><a href="../index.html">About</a></li>

demo/custom-command_test.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020

2121
var _gaq = _gaq || [];
22-
_gaq.push(['_setAccount', 'UA-8922143-3']);
22+
_gaq.push(['_setAccount', 'UA-66438984-1']);
2323
_gaq.push(['_trackPageview']);
2424

2525
(function() {
@@ -31,9 +31,9 @@
3131
</script>
3232
</head>
3333
<body>
34-
<a id="github-forkme" href="https://github.com/medialize/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
34+
<a id="github-forkme" href="https://github.com/swisnl/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
3535
<div id="container">
36-
<h1><a href="https://github.com/medialize/jQuery-contextMenu">jQuery contextMenu</a></h1>
36+
<h1><a href="https://github.com/swisnl/jQuery-contextMenu">jQuery contextMenu</a></h1>
3737

3838
<ul class="menu">
3939
<li><a href="../index.html">About</a></li>

demo/disabled-callback.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020

2121
var _gaq = _gaq || [];
22-
_gaq.push(['_setAccount', 'UA-8922143-3']);
22+
_gaq.push(['_setAccount', 'UA-66438984-1']);
2323
_gaq.push(['_trackPageview']);
2424

2525
(function() {
@@ -31,9 +31,9 @@
3131
</script>
3232
</head>
3333
<body>
34-
<a id="github-forkme" href="https://github.com/medialize/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
34+
<a id="github-forkme" href="https://github.com/swisnl/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
3535
<div id="container">
36-
<h1><a href="https://github.com/medialize/jQuery-contextMenu">jQuery contextMenu</a></h1>
36+
<h1><a href="https://github.com/swisnl/jQuery-contextMenu">jQuery contextMenu</a></h1>
3737

3838
<ul class="menu">
3939
<li><a href="../index.html">About</a></li>

demo/disabled-callback_test.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020

2121
var _gaq = _gaq || [];
22-
_gaq.push(['_setAccount', 'UA-8922143-3']);
22+
_gaq.push(['_setAccount', 'UA-66438984-1']);
2323
_gaq.push(['_trackPageview']);
2424

2525
(function() {
@@ -31,9 +31,9 @@
3131
</script>
3232
</head>
3333
<body>
34-
<a id="github-forkme" href="https://github.com/medialize/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
34+
<a id="github-forkme" href="https://github.com/swisnl/jQuery-contextMenu"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
3535
<div id="container">
36-
<h1><a href="https://github.com/medialize/jQuery-contextMenu">jQuery contextMenu</a></h1>
36+
<h1><a href="https://github.com/swisnl/jQuery-contextMenu">jQuery contextMenu</a></h1>
3737

3838
<ul class="menu">
3939
<li><a href="../index.html">About</a></li>

0 commit comments

Comments
 (0)