Skip to content

Commit

Permalink
Fixes let usage
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Oct 28, 2016
1 parent 9f62546 commit 443e700
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## RELEASE NOTES

### Version 2.2.6 - October, 27, 2016

**Bugs**
-**Tab** - Hotfix for accidental use of ES6 `let`

### Version 2.2.5 - October, 27, 2016

**Bugs**
Expand Down
2 changes: 1 addition & 1 deletion src/definitions/modules/tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ $.fn.tab = function(parameters) {

if(typeof settings.cacheType == 'string' && settings.cacheType.toLowerCase() == 'dom' && $tab.children().length > 0) {
setTimeout(function() {
let
var
$clone = $tab.children().clone(true)
;
$clone = $clone.not('script');
Expand Down

0 comments on commit 443e700

Please sign in to comment.