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

Commit

Permalink
Merge branch 'master' of github.com:Craga89/qTip2
Browse files Browse the repository at this point in the history
Conflicts:
	src/intro.js
  • Loading branch information
Craga89 committed Sep 2, 2012
2 parents 00288f5 + f4791d2 commit 3b2bc01
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 14 deletions.
7 changes: 3 additions & 4 deletions dist/basic/jquery.qtip.js
Expand Up @@ -6,7 +6,7 @@
/*global window: false, jQuery: false, console: false, define: false */

// Uses AMD or browser globals to create a jQuery plugin.
(function(factory) {
(function( factory, window, document, undefined ) {
"use strict";
if(typeof define === 'function' && define.amd) {
define(['jquery'], factory);
Expand All @@ -18,7 +18,7 @@
(function($) {
/* This currently causes issues with Safari 6, so for it's disabled */
//"use strict"; // (Dis)able ECMAScript "strict" operation for this function. See more: http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/

// Munge the primitives - Paul Irish tip
var TRUE = true,
FALSE = false,
Expand Down Expand Up @@ -1854,5 +1854,4 @@ QTIP.defaults = {
};



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

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions dist/jquery.qtip.js
Expand Up @@ -6,7 +6,7 @@
/*global window: false, jQuery: false, console: false, define: false */

// Uses AMD or browser globals to create a jQuery plugin.
(function(factory) {
(function( factory, window, document, undefined ) {
"use strict";
if(typeof define === 'function' && define.amd) {
define(['jquery'], factory);
Expand All @@ -18,7 +18,7 @@
(function($) {
/* This currently causes issues with Safari 6, so for it's disabled */
//"use strict"; // (Dis)able ECMAScript "strict" operation for this function. See more: http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/

// Munge the primitives - Paul Irish tip
var TRUE = true,
FALSE = false,
Expand Down Expand Up @@ -3364,5 +3364,4 @@ PLUGINS.bgiframe = function(api)
PLUGINS.bgiframe.initialize = 'render';



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

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/intro.js
Expand Up @@ -2,7 +2,7 @@
/*global window: false, jQuery: false, console: false, define: false */

// Uses AMD or browser globals to create a jQuery plugin.
(function(factory) {
(function( factory, window, document, undefined ) {
"use strict";
if(typeof define === 'function' && define.amd) {
define(['jquery'], factory);
Expand All @@ -14,7 +14,7 @@
(function($) {
/* This currently causes issues with Safari 6, so for it's disabled */
//"use strict"; // (Dis)able ECMAScript "strict" operation for this function. See more: http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/

// Munge the primitives - Paul Irish tip
var TRUE = true,
FALSE = false,
Expand Down
3 changes: 1 addition & 2 deletions src/outro.js
@@ -1,2 +1 @@

}));
}), window, document, undefined );

0 comments on commit 3b2bc01

Please sign in to comment.