Skip to content

Commit

Permalink
Merge pull request #138 from iamisti/feature-update-dependencies
Browse files Browse the repository at this point in the history
Fix custom no message found message
  • Loading branch information
iamisti authored Jul 22, 2016
2 parents 253a683 + 03c7a3d commit 8cbb5c5
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 23 deletions.
1 change: 1 addition & 0 deletions app/modules/main/directives/mdtTableDirective.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@
mdtRowOptions: $scope.mdtRow,
mdtRowPaginatorFunction: $scope.mdtRowPaginator,
mdtRowPaginatorErrorMessage: $scope.mdtRowPaginatorErrorMessage,
mdtRowPaginatorNoResultsMessage: $scope.mdtRowPaginatorNoResultsMessage,
mdtTriggerRequest: $scope.mdtTriggerRequest
});
}
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mdDataTable",
"version": "1.6.3",
"version": "1.6.4",
"homepage": "https://github.com/iamisti/mdDataTable",
"author":"Istvan Fodor <[email protected]>",
"main": [
Expand Down
1 change: 1 addition & 0 deletions demo/developmentArea.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
paginated-rows="{isEnabled: true, rowsPerPageValues: [5,10,20,50]}"
mdt-row-paginator="paginatorCallback(page, pageSize)"
mdt-row-paginator-error-message="Error happened during loading nutritions."
mdt-row-paginator-no-results-message="No results were found."
mdt-trigger-request="getLoadResultsCallback(loadPageCallback)"
mdt-row="{
'table-row-id-key': 'fields.item_id',
Expand Down
43 changes: 22 additions & 21 deletions dist/md-data-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@
mdtRowOptions: $scope.mdtRow,
mdtRowPaginatorFunction: $scope.mdtRowPaginator,
mdtRowPaginatorErrorMessage: $scope.mdtRowPaginatorErrorMessage,
mdtRowPaginatorNoResultsMessage: $scope.mdtRowPaginatorNoResultsMessage,
mdtTriggerRequest: $scope.mdtTriggerRequest
});
}
Expand Down Expand Up @@ -801,27 +802,6 @@
.module('mdDataTable')
.factory('TableDataStorageFactory', TableDataStorageFactory);
}());
(function(){
'use strict';

/**
* @name ColumnOptionProvider
* @returns possible assignable column options you can give
*
* @describe Representing the assignable properties to the columns you can give.
*/
var ColumnOptionProvider = {
ALIGN_RULE : {
ALIGN_LEFT: 'left',
ALIGN_RIGHT: 'right'
}
};

angular
.module('mdDataTable')
.value('ColumnOptionProvider', ColumnOptionProvider);
})();

(function(){
'use strict';

Expand All @@ -843,6 +823,27 @@
.module('mdDataTable')
.service('ColumnAlignmentHelper', ColumnAlignmentHelper);
}());
(function(){
'use strict';

/**
* @name ColumnOptionProvider
* @returns possible assignable column options you can give
*
* @describe Representing the assignable properties to the columns you can give.
*/
var ColumnOptionProvider = {
ALIGN_RULE : {
ALIGN_LEFT: 'left',
ALIGN_RIGHT: 'right'
}
};

angular
.module('mdDataTable')
.value('ColumnOptionProvider', ColumnOptionProvider);
})();

(function(){
'use strict';

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "md-data-table",
"version": "1.6.3",
"version": "1.6.4",
"author": "Istvan Fodor <[email protected]>",
"registry": "github",
"repository": {
Expand Down

0 comments on commit 8cbb5c5

Please sign in to comment.