Skip to content

Commit fe927c5

Browse files
committed
better strict mode support
1 parent 3a89c94 commit fe927c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jquery.columnizer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@
169169

170170
function split($putInHere, $pullOutHere, $parentColumn, height){
171171
if($pullOutHere.children().length){
172-
$cloneMe = $pullOutHere.children(":first");
172+
var $cloneMe = $pullOutHere.children(":first");
173173
//
174174
// clone the node with all data and events
175-
$clone = $cloneMe.clone(true);
175+
var $clone = $cloneMe.clone(true);
176176
//
177177
// need to support both .prop and .attr if .prop doesn't exist.
178178
// this is for backwards compatibility with older versions of jquery.

0 commit comments

Comments
 (0)