From: Fulup Ar Foll Date: Mon, 25 Jan 2016 21:27:29 +0000 (+0100) Subject: Cosmetic fixes X-Git-Tag: blowfish_2.0.1~37 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-demo.git;a=commitdiff_plain;h=33940e952258bf1026a5f2c0687e4da01bc66004 Cosmetic fixes --- diff --git a/afm-client/app/Frontend/pages/Dashboard/Dashboard.html b/afm-client/app/Frontend/pages/Dashboard/Dashboard.html index c393271..46dd60a 100644 --- a/afm-client/app/Frontend/pages/Dashboard/Dashboard.html +++ b/afm-client/app/Frontend/pages/Dashboard/Dashboard.html @@ -28,6 +28,6 @@ animationIn: slideInRight - + diff --git a/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js b/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js index 387212e..50220dd 100644 --- a/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js +++ b/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js @@ -22,18 +22,18 @@ 'use strict'; var tmplAppli = '
' + - '' + + '' + '{{label}}' + '
'; var tmplModal = '×' + - '' + - 'Application {{appname}}' + + '' + + 'Application {{name}}' + '' + ''; @@ -72,7 +72,10 @@ return; } - // Application was stated + // Application was started + elem.addClass ("success"); + elem.removeClass ("fail"); + scope.runID = response.data.response.runid; scope.callback (scope.appliID, "/api/afm-main/start", response); }); break; @@ -94,8 +97,8 @@ contentScope: { action : actionModal, close : closeModal, - appicon : scope.icon, - appname : scope.label, + icon : scope.icon, + label : scope.label }, template : tmplModal }; // Popup Modal to render application data @@ -105,7 +108,7 @@ // extract application information from AppID+Store if (attrs.handle && scope.store [attrs.handle].name) { - scope.icon = AppConfig.paths.icons + scope.store [attrs.handle].name.toLowerCase(); + scope.icon = AppConfig.paths.icons + scope.store [attrs.handle].name.toLowerCase() + '-ico.png'; scope.label = scope.store [attrs.handle].name; scope.appliID= attrs.handle; } else { diff --git a/afm-client/app/Frontend/widgets/FormInput/UploadAppli.js b/afm-client/app/Frontend/widgets/FormInput/UploadAppli.js index d18f620..c1b33ac 100644 --- a/afm-client/app/Frontend/widgets/FormInput/UploadAppli.js +++ b/afm-client/app/Frontend/widgets/FormInput/UploadAppli.js @@ -121,7 +121,6 @@ function LoadFileSvc (scope, files, fileCB) { // if everything is OK let's add file to xform xform.append(scope.name, this.file, this.file.name); } - } angular.module('UploadFiles',['AppConfig', 'ModalNotification', 'RangeSlider'])