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

Commit

Permalink
build 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Dec 25, 2013
1 parent a6e382f commit 9ec46a9
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 41 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,5 @@
/node_modules
.DS_Store
npm-debug.log

.sizecache.json

sauce_connect.log
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# 1.2.4 / unreleased
# 1.2.5 / unreleased

*

# 1.2.4 / 2013-12-25

* [BUGFIX] Fixed #44 'Double click on .hasmenu currentTarget empy'
* [BUGFIX] Fixed #46 'Not working on XHTML page' (poofeg)
* Added test matrix for different platforms.

# 1.2.3 / 2013-10-19

Expand Down
33 changes: 6 additions & 27 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,6 @@ module.exports = function (grunt) {

grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
compare_size: {
files: [
"jquery.ui-contextmenu.min.js",
"jquery.ui-contextmenu.js"
],
options: {
compress: {
gz: function (fileContents) {
return require("gzip-js").zip(fileContents, {}).length;
}
}
}
},
connect: {
demo: {
options: {
Expand Down Expand Up @@ -110,23 +97,15 @@ module.exports = function (grunt) {
grunt.registerTask("server", ["connect:demo"]);
grunt.registerTask("test", ["jshint",
"qunit"]);

//
// See
// https://saucelabs.com/docs/javascript-unit-testing-tutorial
//
grunt.registerTask("saucelabs", ["test",
"connect:sauce",
"saucelabs-qunit"]);

grunt.registerTask("travis", [//"test",
"saucelabs"]);
grunt.registerTask("sauce", ["connect:sauce",
"saucelabs-qunit"]);
grunt.registerTask("travis", ["test",
"sauce"]);
grunt.registerTask("default", ["test"]);
grunt.registerTask("build", ["exec:tabfix",
"test",
"uglify",
"compare_size"
// "saucelabs"
// "sauce",
"uglify"
]);
grunt.registerTask("upload", ["build",
"exec:upload"]);
Expand Down
2 changes: 1 addition & 1 deletion jquery.ui-contextmenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


$.widget("moogle.contextmenu", {
version: "1.2.2",
version: "1.2.4",
options: {
delegate: null, // selector
hide: { effect: "fadeOut", duration: "fast"},
Expand Down
4 changes: 2 additions & 2 deletions jquery.ui-contextmenu.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 5 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui-contextmenu",
"version": "1.2.3-1",
"version": "1.2.4",
"title": "jQuery UI context menu plugin",
"description": "Turn a jQuery UI Menu widget into a contextmenu.",
"keywords": [
Expand Down Expand Up @@ -38,15 +38,13 @@
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-concat": "~0.1.3",
"grunt-contrib-connect": "~0.3.0",
"grunt-contrib-jshint": "~0.3.0",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-qunit": "~0.2.0",
"grunt-contrib-concat": "~0.1.3",
"grunt-contrib-uglify": "~0.2.0",
"grunt-exec": "~0.4.0",
"grunt-contrib-connect": "~0.3.0",
"grunt-saucelabs": "~4.1.2",
"grunt-compare-size": "~0.4.0",
"gzip-js": "~0.3.2"
"grunt-saucelabs": "~4.1.2"
},
"scripts": {
"test": "grunt ci --verbose"
Expand Down
2 changes: 1 addition & 1 deletion ui-contextmenu.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui-contextmenu",
"version": "1.2.3",
"version": "1.2.4",

"title": "jQuery UI context menu plugin",
"description": "Turn a jQuery UI Menu widget into a contextmenu.",
Expand Down

0 comments on commit 9ec46a9

Please sign in to comment.