Showing with 2 additions and 8 deletions.
  1. +0 −6 .gitmodules
  2. +1 −1 page/code-organization/concepts.md
  3. +1 −1 page/performance/detach-elements-before-work-with-them.md

This file was deleted.

@@ -291,7 +291,7 @@ $( document ).ready(function() {
return urlBase + $currentItem.attr("id");
},
showItem = function() {
var $currentItem = $( this );
$currentItem = $( this );
getContent( showContent );
},
showItemByIndex = function( idx ) {
@@ -17,5 +17,5 @@ var $parent = $table.parent();
$table.detach();
// ... add lots and lots of rows to table
$parent.append( table );
$parent.append( $table );
```