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

Commit

Permalink
dist/ rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Sep 4, 2012
1 parent 5f10282 commit 9f72cbc
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 24 deletions.
2 changes: 1 addition & 1 deletion dist/basic/jquery.qtip.css
@@ -1,4 +1,4 @@
/*! qTip2 - Pretty powerful tooltips - v2.0.0 - 2012-09-02
/*! qTip2 - Pretty powerful tooltips - v2.0.0 - 2012-09-04
* http://craigsworks.com/projects/qtip2/
* Copyright (c) 2012 Craig Michael Thompson; Licensed MIT, GPL */

Expand Down
23 changes: 13 additions & 10 deletions dist/basic/jquery.qtip.js
@@ -1,12 +1,15 @@
/*! qTip2 - Pretty powerful tooltips - v2.0.0 - 2012-09-02
/*! qTip2 - Pretty powerful tooltips - v2.0.0 - 2012-09-04
* http://craigsworks.com/projects/qtip2/
* Copyright (c) 2012 Craig Michael Thompson; Licensed MIT, GPL */

/*jslint browser: true, onevar: true, undef: true, nomen: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: true */
/*global window: false, jQuery: false, console: false, define: false */

/* Cache window, document, undefined */
(function( window, document, undefined ) {

// Uses AMD or browser globals to create a jQuery plugin.
(function( factory, window, document, undefined ) {
(function( factory ) {
"use strict";
if(typeof define === 'function' && define.amd) {
define(['jquery'], factory);
Expand Down Expand Up @@ -1701,15 +1704,14 @@ PLUGINS = QTIP.plugins = {
if(arguments.length < 2) {
return $.attr(self, oldtitle);
}
else {
// If qTip is rendered and title was originally used as content, update it
if(api && api.options.content.attr === title && api.cache.attr) {
api.set('content.text', val);
}

// Use the regular attr method to set, then cache the result
return this.attr(oldtitle, val);
// If qTip is rendered and title was originally used as content, update it
if(api && api.options.content.attr === title && api.cache.attr) {
api.set('content.text', val);
}

// Use the regular attr method to set, then cache the result
return this.attr(oldtitle, val);
}
}

Expand Down Expand Up @@ -1840,4 +1842,5 @@ QTIP.defaults = {
};


}), window, document, undefined );
}));
}( window, document ));
2 changes: 1 addition & 1 deletion dist/basic/jquery.qtip.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jquery.qtip.css
@@ -1,4 +1,4 @@
/*! qTip2 - Pretty powerful tooltips - v2.0.0 - 2012-09-02
/*! qTip2 - Pretty powerful tooltips - v2.0.0 - 2012-09-04
* http://craigsworks.com/projects/qtip2/
* Copyright (c) 2012 Craig Michael Thompson; Licensed MIT, GPL */

Expand Down
23 changes: 13 additions & 10 deletions dist/jquery.qtip.js
@@ -1,12 +1,15 @@
/*! qTip2 - Pretty powerful tooltips - v2.0.0 - 2012-09-02
/*! qTip2 - Pretty powerful tooltips - v2.0.0 - 2012-09-04
* http://craigsworks.com/projects/qtip2/
* Copyright (c) 2012 Craig Michael Thompson; Licensed MIT, GPL */

/*jslint browser: true, onevar: true, undef: true, nomen: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: true */
/*global window: false, jQuery: false, console: false, define: false */

/* Cache window, document, undefined */
(function( window, document, undefined ) {

// Uses AMD or browser globals to create a jQuery plugin.
(function( factory, window, document, undefined ) {
(function( factory ) {
"use strict";
if(typeof define === 'function' && define.amd) {
define(['jquery'], factory);
Expand Down Expand Up @@ -1701,15 +1704,14 @@ PLUGINS = QTIP.plugins = {
if(arguments.length < 2) {
return $.attr(self, oldtitle);
}
else {
// If qTip is rendered and title was originally used as content, update it
if(api && api.options.content.attr === title && api.cache.attr) {
api.set('content.text', val);
}

// Use the regular attr method to set, then cache the result
return this.attr(oldtitle, val);
// If qTip is rendered and title was originally used as content, update it
if(api && api.options.content.attr === title && api.cache.attr) {
api.set('content.text', val);
}

// Use the regular attr method to set, then cache the result
return this.attr(oldtitle, val);
}
}

Expand Down Expand Up @@ -3348,4 +3350,5 @@ PLUGINS.bgiframe = function(api)
PLUGINS.bgiframe.initialize = 'render';


}), window, document, undefined );
}));
}( window, document ));
2 changes: 1 addition & 1 deletion dist/jquery.qtip.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/core.js
Expand Up @@ -1639,6 +1639,7 @@ PLUGINS = QTIP.plugins = {
if(arguments.length < 2) {
return $.attr(self, oldtitle);
}

// If qTip is rendered and title was originally used as content, update it
if(api && api.options.content.attr === title && api.cache.attr) {
api.set('content.text', val);
Expand Down

0 comments on commit 9f72cbc

Please sign in to comment.