diff --git a/webadmin/src/views/appstore.html b/webadmin/src/views/appstore.html index ffdc980f8..9fbb51fb0 100644 --- a/webadmin/src/views/appstore.html +++ b/webadmin/src/views/appstore.html @@ -107,7 +107,7 @@

Missing an app? Let us know.

- +
{{feedback.error}}
@@ -135,7 +135,8 @@
-

No applications in this category

+

No applications in this category.

+

Let us know if you miss something.

Loading

diff --git a/webadmin/src/views/appstore.js b/webadmin/src/views/appstore.js index 62837c7aa..57a0b48cb 100644 --- a/webadmin/src/views/appstore.js +++ b/webadmin/src/views/appstore.js @@ -53,6 +53,10 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$loca }); }; + $scope.activateFeedbackForm = function () { + $('#feedbackDescriptionTextarea').focus(); + }; + function getAppList(callback) { AppStore.getApps(function (error, apps) { if (error) return callback(error);