Edit file File name : Title.html Content :<div ng-controller="A2OptTitleController" style="font-weight:bold;font-size:16px;"> <span ng-if="vars.currentController == 'Memcached'">Object Cache</span> <span ng-if="vars.currentController != 'Memcached'">{{vars.currentController}}</span> <span ng-if="vars.selectedApp != null">- <span ng-if="!vars.selectedApp.edit_title"> <span ng-if="vars.selectedApp.nickname == null || vars.selectedApp.nickname == ''" ng-bind-html="vars.selectedApp.title" ></span> <span ng-if="vars.selectedApp.nickname != null && vars.selectedApp.nickname != ''" ng-if="!vars.selectedApp.edit_title" ng-bind-html="vars.selectedApp.nickname"></span> <a ng-click="vars.selectedApp.edit_title = true" ><span class="glyphicon glyphicon-edit"></span></a> </span> <span ng-if="vars.selectedApp.edit_title"> <input ng-class="form-control" focus-me="{{vars.selectedApp.edit_title}}" ng-model="vars.selectedApp.nickname" style="width:140px" placeholder="{{vars.selectedApp.title}}" ng-blur="vars.selectedApp.edit_title = false; save_app_title(vars.selectedApp);" ng-keyup="is_enter($event,this)" /> </span></span> <div class="pull-right"> <span ng-if="vars.selectedApp != null && vars.selectedApp.type != null && vars.selectedApp.type != ''" > <img ng-src="resources/app_logos/{{app_logos[vars.selectedApp.type]}}" /> </span> </div> <div style="clear:both"></div> </div>Save