Skip to content

Commit

Permalink
Merge pull request #82 from moxie-lean/develop
Browse files Browse the repository at this point in the history
v0.1.15
  • Loading branch information
andybar2 committed Jun 9, 2016
2 parents 2eee12a + 0d6f7c7 commit 2e1d504
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/molecules/admin-bar/admin-bar.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ function lnMAdminBarController($log, $rootScope, $scope, $cookies, $timeout, $el
vm.lnLogoutUrl = response.data.logout_url;
vm.lnEditPageUrl = response.data.edit_page_url;
vm.lnNewItemTypes = response.data.post_types;
vm.lnUserNicename = angular.isDefined( response.data.nicename ) ? response.data.nicename : '';
vm.lnUserDisplayName = angular.isDefined( response.data.display_name ) ? response.data.display_name : '';
vm.lnUserFirstName = angular.isDefined( response.data.first_name ) ? response.data.first_name : '';
vm.lnUserLastName = angular.isDefined( response.data.last_name ) ? response.data.last_name : '';

_enableAdminBar();
}
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": "ln-patternlab",
"version": "0.1.14",
"version": "0.1.15",
"description": "An AngularJS module for Lean Patterns.",
"author": "Moxie <[email protected]> (https://getmoxied.net)",
"main": "index.js",
Expand Down

0 comments on commit 2e1d504

Please sign in to comment.