diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-06-21 11:00:42 +0200 |
---|---|---|
committer | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-06-21 11:00:42 +0200 |
commit | aac66099e68d635cbb5945366e00232abf868bdb (patch) | |
tree | 68d22601d2d71736b53a95652d40bbaef019ae4e /src/index.html | |
parent | 10d97b609b159fb4318c8f3681cf1f857fa34ede (diff) |
FUNCT Basic support to launch apps
Diffstat (limited to 'src/index.html')
-rw-r--r-- | src/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.html b/src/index.html index f280ebe..2821653 100644 --- a/src/index.html +++ b/src/index.html @@ -8,12 +8,12 @@ <body> <div id="AppContainer" class="parent"> <script id="item-template" type="x-tmpl-mustache"> - <div class="item"> + <a href="#" class="item" app-id="{{ id }}" onclick="window.launch(this);"> <img class="icon" src="{{ icon }}" onload="SVGInject(this);"> <div class="name"> {{ name }} </div> - </div> + </a> </script> </div> <div class="log" id="log"> |