Skip to content

Commit c8ea908

Browse files
committed
Removed unneccessary variable
1 parent aaa03ee commit c8ea908

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/jqfactory.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
// Strict mode
1717
'use strict';
1818
var slice = Array.prototype.slice,
19-
$fnProps,
2019
jqfactory = {
2120
create: function(name, props, enforceNamespace) {
2221
var names = name.split('.'),
@@ -42,7 +41,7 @@
4241
}
4342
};
4443
Plugin.prototype = protoProps;
45-
$[namespace][basename] = $fnProps = instanceProps;
44+
$[namespace][basename] = instanceProps;
4645
if(enforceNamespace) {
4746
namespaceObj[basename] = function(options) {
4847
return this.each(function() {

0 commit comments

Comments
 (0)