Deliver centralized role management feature
[portal.git] / ecomp-portal-FE-common / client / bower_components_external / b2b / js / b2b-angular / README.md
1 This file tracks patches to b2b-angular.js
2
3 14 August 2017: fix b2b-tree de-select the parent node issue - code provided by b2b team
4
5 24 April 2017: hide header menu when click on iframe in a new tab
6 +
7 $(window).blur(function() {
8                         if(scope.showMenu){
9                          scope.showMenu = false;
10                      elem.removeClass('active');
11                      scope.$apply();
12                         }
13                 });
14
15 20 March 2017: Page auto adjustment with left menu collapse and expand.
16 +
17 scope.toggleDrawer = function(showmenu){
18         scope.idx=-1; /*hide the sunmenus*/
19         if(showmenu){
20                 document.getElementById('page-content').style.paddingLeft = "50px";
21         }
22         else
23                 document.getElementById('page-content').style.paddingLeft = "230px";            
24 };
25
26 26 May 2017 : Changed b2b sort icons
27 +
28 "<i ng-class=\"{'icon-controls-upPRIMARY active': sortPattern === 'ascending', 'icon-controls-down active down': sortPattern === 'descending'}\"></i>\n"