Skip to content

Commit

Permalink
Bump version. Build.
Browse files Browse the repository at this point in the history
  • Loading branch information
PSyton committed Nov 13, 2014
1 parent 08e2896 commit a6c9b7c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 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.4",
"version": "1.4.5",
"homepage": "https://github.com/lorenzofox3/Smart-Table",
"authors": [
"lorenzofox3 <[email protected]>"
Expand Down
7 changes: 6 additions & 1 deletion dist/smart-table.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,12 @@ ng.module('smart-table')
stItemsByPage: '=?',
stDisplayedPages: '=?'
},
templateUrl: 'template/smart-table/pagination.html',
templateUrl: function(element, attrs) {
if (attrs.stTemplate) {
return attrs.stTemplate;
}
return 'template/smart-table/pagination.html';
},
link: function (scope, element, attrs, ctrl) {

scope.stItemsByPage = scope.stItemsByPage ? +(scope.stItemsByPage) : 10;
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.4",
"version": "1.4.5",
"description": "",
"main": "dist/smart-table.debug.js",
"scripts": {
Expand Down

0 comments on commit a6c9b7c

Please sign in to comment.