Skip to content

Commit

Permalink
built and bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
danrot committed Jul 14, 2016
1 parent 69a184b commit 60af88e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 4 additions & 2 deletions dist/husky.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 60af88e

Please sign in to comment.