Skip to content

Commit f146ff0

Browse files
committed
Merge pull request #4 from tadatuta/patch-1
Small fix to support minification
2 parents c6f2875 + 00f485b commit f146ff0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/jquery.inherit/jquery.inherit.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
* http://www.opensource.org/licenses/mit-license.php
77
* http://www.gnu.org/licenses/gpl.html
88
*
9-
* @version 1.3.5
9+
* @version 1.3.6
1010
*/
1111

1212
(function($) {
1313

14-
var hasIntrospection = (function(){_}).toString().indexOf('_') > -1,
14+
var hasIntrospection = (function(){'_';}).toString().indexOf('_') > -1,
1515
emptyBase = function() {},
1616
objCreate = Object.create || function(ptp) {
1717
var inheritance = function() {};
@@ -118,4 +118,4 @@ $.inheritSelf = function(base, props, staticProps) {
118118

119119
};
120120

121-
})(jQuery);
121+
})(jQuery);

0 commit comments

Comments
 (0)