Skip to content

Commit

Permalink
patch vor sync problem
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzofox3 committed Nov 7, 2014
1 parent 5b05c26 commit 131e8e0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smart-table",
"version": "1.4.3",
"version": "1.4.4",
"homepage": "https://github.com/lorenzofox3/Smart-Table",
"authors": [
"lorenzofox3 <[email protected]>"
Expand Down
6 changes: 5 additions & 1 deletion changeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,8 @@ function(tableState, tableController){
## version 1.4.3

* ability to set filter function <code>st-set-filter</code>
* ability to set sort function <code>st-set-sort</code>
* ability to set sort function <code>st-set-sort</code>

## version 1.4.4

* patch for sync problem
2 changes: 1 addition & 1 deletion dist/smart-table.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ng.module('smart-table')
return safeSrc ? safeSrc.length : 0;

}, function (newValue, oldValue) {
if (newValue !== oldValue) {
if (newValue !== safeCopy.length) {
updateSafeCopy();
}
});
Expand Down
2 changes: 1 addition & 1 deletion dist/smart-table.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smart-table",
"version": "1.4.3",
"version": "1.4.4",
"description": "",
"main": "dist/smart-table.debug.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/stTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ng.module('smart-table')
return safeSrc ? safeSrc.length : 0;

}, function (newValue, oldValue) {
if (newValue !== oldValue) {
if (newValue !== safeCopy.length) {
updateSafeCopy();
}
});
Expand Down

0 comments on commit 131e8e0

Please sign in to comment.