Skip to content

Commit 35798b9

Browse files
committed
code-organization/concepts.md: Fixed a scoped variable collision in the last code example.
Closes jquerygh-589 Fixes jquerygh-585
1 parent f150916 commit 35798b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

page/code-organization/concepts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ $( document ).ready(function() {
195195
196196
var createContainer = function() {
197197
var item = $( this );
198-
var container = container.clone().appendTo( item );
199-
item.data( "container", container );
198+
var _container = container.clone().appendTo( item );
199+
item.data( "container", _container );
200200
};
201201
202202
var buildUrl = function() {

0 commit comments

Comments
 (0)