Commit ec6ce39f0753f59587c5d76346ae9fe9db63d070
1 parent
eb5fd6b2
After cherry pick of 3df42770ae i.e. fix for Bug 6983: Modesty change doesn't r…
…eflect on Navigator for the first time 6980: Image doesn't update in Navigator
Showing
2 changed files
with
2 additions
and
2 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... | ... | @@ -560,7 +560,7 @@ AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location", |
560 | 560 | var openViewLen = $rootScope.openViews.length; |
561 | 561 | var currentOpenViewId = $rootScope.openViews[openViewLen - 1].BodyViewId; |
562 | 562 | $rootScope.isSettingEventAlredayDispachted = true; |
563 | - $rootScope.$broadcast('reloadDABodyViewEvent', { reloadDABodyViewId: currentOpenViewId }); | |
563 | + $rootScope.$broadcast('reloadDABodyViewEvent', { reloadDABodyViewId: currentOpenViewId },true); | |
564 | 564 | } |
565 | 565 | else { |
566 | 566 | $rootScope.$broadcast('reloadDAControllerEvent', true); | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/da/da-view.html
... | ... | @@ -243,7 +243,7 @@ |
243 | 243 | |
244 | 244 | <div class="dropdown-menu active" id="navigatorDiv" style="min-height:auto; min-width:auto; "> |
245 | 245 | <div id="containment-wrapper" align="center" style="min-width:auto;height:119px; "> |
246 | - <img id="navimg" src="{{navimgsrc}}" alt=""></img> | |
246 | + <img id="navimg" ng-src="{{navimgsrc}}" alt=""></img> | |
247 | 247 | <div id="draggable" class="draggable ui-widget-content" ng-mouseup="ScrollCanvasDiv()" ng-style="dragdivposition"> |
248 | 248 | </div> |
249 | 249 | </div> | ... | ... |