From 60af88e9b6fe9a9fe1d435c1fbb9005fc2ff939b Mon Sep 17 00:00:00 2001 From: Daniel Rotter Date: Thu, 14 Jul 2016 17:38:24 +0200 Subject: [PATCH] built and bumped version --- CHANGELOG.md | 2 +- dist/husky.js | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12fc5c879..2e671ee17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG for husky -* 0.21.1 (2016-07-11) +* 0.21.1 (2016-07-14) * HOTFIX #688 fixed child order in datagrid * HOTFIX #670 workaround for ie dorpdown issue * HOTFIX #679 Globalize: Fixed loading correct file when culture name includes country diff --git a/dist/husky.js b/dist/husky.js index bd81c0a55..f6d235f5a 100644 --- a/dist/husky.js +++ b/dist/husky.js @@ -30991,8 +30991,10 @@ define('husky_components/datagrid/decorators/table-view',[],function() { } // insert the row after the last child element of the parent, or directly after the parent // if no such child exists - this.sandbox.dom.after(this.getLastChildElementOfParent($parentElement) || $parentElement, - this.table.rows[record.id].$el); + this.sandbox.dom.after( + this.getLastChildElementOfParent($parentElement) || $parentElement, + this.table.rows[record.id].$el + ); } else { insertMethod(this.table.$body, this.table.rows[record.id].$el); }