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

Commit

Permalink
Add grunt-jquery-json package and add validatee jquery JSON plugin pa…
Browse files Browse the repository at this point in the history
…ckage file.
  • Loading branch information
Craga89 committed Mar 29, 2013
1 parent 227c6bb commit 42dd48d
Show file tree
Hide file tree
Showing 7 changed files with 79 additions and 13 deletions.
4 changes: 2 additions & 2 deletions dist/jquery.qtip.css
@@ -1,12 +1,12 @@
/*!
* qTip2 - Pretty powerful tooltips - v2.0.1-44-
* qTip2 - Pretty powerful tooltips - v2.0.1-45-
* http://qtip2.com
*
* Copyright (c) 2013 Craig Michael Thompson
* Released under the MIT, GPL licenses
* http://jquery.org/license
*
* Date: Fri Mar 29 2013 02:29 GMT+0000
* Date: Fri Mar 29 2013 06:20 GMT+0000
* Plugins: svg ajax tips modal viewport imagemap ie6
* Styles: basic css3
*/
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.qtip.js
@@ -1,12 +1,12 @@
/*!
* qTip2 - Pretty powerful tooltips - v2.0.1-44-
* qTip2 - Pretty powerful tooltips - v2.0.1-45-
* http://qtip2.com
*
* Copyright (c) 2013 Craig Michael Thompson
* Released under the MIT, GPL licenses
* http://jquery.org/license
*
* Date: Fri Mar 29 2013 02:29 GMT+0000
* Date: Fri Mar 29 2013 06:20 GMT+0000
* Plugins: svg ajax tips modal viewport imagemap ie6
* Styles: basic css3
*/
Expand Down Expand Up @@ -1833,7 +1833,7 @@ if(!$.ui) {
}

// Set global qTip properties
QTIP.version = '2.0.1-44-';
QTIP.version = '2.0.1-45-';
QTIP.nextid = 0;
QTIP.inactiveEvents = 'click dblclick mousedown mouseup mousemove mouseleave mouseenter'.split(' ');
QTIP.zindex = 15000;
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.qtip.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/jquery.qtip.min.js

Large diffs are not rendered by default.

18 changes: 16 additions & 2 deletions grunt.js
Expand Up @@ -3,11 +3,25 @@ module.exports = function(grunt) {
// Load grunt helpers
grunt.loadNpmTasks('grunt-contrib');
grunt.loadNpmTasks('grunt-text-replace');
grunt.loadNpmTasks('grunt-jquery-json');

// Project configuration.
grunt.initConfig({
// Meta properties
// Package properties
pkg: '<json:package.json>',
jqueryjson: {
download: 'http://qtip2.com/download',
docs: 'http://qtip2.com/guides',
demo: 'http://qtip2.com/demos',
bugs: 'http://gitbhub.com/Craga89/qTip2/issues',
maintainers: [{
"name": "Craig Michael Thompson",
"email": "craig@craigsworks.com",
"url": "http://craigsworks.com/"
}]
},

// So meta...
meta: {
banners: {
full: '/*!\n * <%= pkg.title || pkg.name %> - @vVERSION\n' +
Expand Down Expand Up @@ -226,5 +240,5 @@ module.exports = function(grunt) {
grunt.registerTask('css', 'init clean concat:dist_css mincss:dist replace');
grunt.registerTask('basic', 'init clean lint concat:basic concat:basic_css min:basic mincss:basic replace');
grunt.registerTask('default', 'init clean lint concat:dist concat:dist_css min:dist mincss:dist replace');
grunt.registerTask('dev', 'init clean lint concat min mincss replace');
grunt.registerTask('dev', 'init clean lint jquery-json concat min mincss replace');
};
12 changes: 9 additions & 3 deletions package.json
Expand Up @@ -9,6 +9,11 @@
"email": "craig@craigsworks.com",
"url": "http://craigsworks.com/"
},
"contributors": [{
"name": "Craig Michael Thompson",
"email": "craig@craigsworks.com",
"url": "http://craigsworks.com/"
}],
"repository": {
"type": "git",
"url": "git://github.com/Craga89/qTip2.git"
Expand All @@ -30,12 +35,13 @@
}
],
"dependencies": {
"jquery": "=>1.4.2"
"jquery": ">=1.4.2"
},
"devDependencies": {
"grunt": "~0.3.11",
"grunt-contrib": "~0.1.1",
"grunt-text-replace": "~0.1.8"
"grunt-text-replace": "~0.1.8",
"grunt-jquery-json": "~0.2.1"
},
"keywords": ["tooltip", "tooltips", "jquery", "qtip", "qtip2", "craig michael thompson", "craigsworks"]
"keywords": ["tooltip", "tooltips", "jquery", "qtip", "qtip2", "craig", "thompson", "craigsworks"]
}
46 changes: 46 additions & 0 deletions qTip2.jquery.json
@@ -0,0 +1,46 @@
{
"name": "qTip2",
"title": "qTip2 - Pretty powerful tooltips",
"description": "Introducing... qTip2. The second generation of the advanced qTip plugin for the ever popular jQuery framework.",
"version": "2.0.1",
"homepage": "http://qtip2.com",
"author": {
"name": "Craig Michael Thompson",
"email": "craig@craigsworks.com",
"url": "http://craigsworks.com/"
},
"bugs": "http://gitbhub.com/Craga89/qTip2/issues",
"licenses": [
{
"type": "MIT",
"url": "http://craigsworks.com/projects/qtip2/blob/master/LICENSE-MIT"
},
{
"type": "GPL",
"url": "http://craigsworks.com/projects/qtip2/blob/master/LICENSE-GPL"
}
],
"dependencies": {
"jquery": ">=1.4.2"
},
"keywords": [
"tooltip",
"tooltips",
"jquery",
"qtip",
"qtip2",
"craig",
"thompson",
"craigsworks"
],
"download": "http://qtip2.com/download",
"docs": "http://qtip2.com/guides",
"demo": "http://qtip2.com/demos",
"maintainers": [
{
"name": "Craig Michael Thompson",
"email": "craig@craigsworks.com",
"url": "http://craigsworks.com/"
}
]
}

0 comments on commit 42dd48d

Please sign in to comment.