forked from FOSS/BangleApps
Removed href="#" that scrolls page on top
parent
6068eb0786
commit
c31394cb66
|
@ -207,7 +207,7 @@ function refreshLibrary() {
|
||||||
var version = getVersionInfo(app, appInstalled);
|
var version = getVersionInfo(app, appInstalled);
|
||||||
var versionInfo = version.text;
|
var versionInfo = version.text;
|
||||||
if (versionInfo) versionInfo = " <small>("+versionInfo+")</small>";
|
if (versionInfo) versionInfo = " <small>("+versionInfo+")</small>";
|
||||||
var readme = `<a href="#" onclick="showReadme('${app.id}')">Read more...</a>`;
|
var readme = `<a class="c-hand" onclick="showReadme('${app.id}')">Read more...</a>`;
|
||||||
var favourite = favourites.find(e => e == app.id);
|
var favourite = favourites.find(e => e == app.id);
|
||||||
return `<div class="tile column col-6 col-sm-12 col-xs-12">
|
return `<div class="tile column col-6 col-sm-12 col-xs-12">
|
||||||
<div class="tile-icon">
|
<div class="tile-icon">
|
||||||
|
|
|
@ -49,7 +49,7 @@ function getVersionInfo(appListing, appInstalled) {
|
||||||
var versionText = "";
|
var versionText = "";
|
||||||
var canUpdate = false;
|
var canUpdate = false;
|
||||||
function clicky(v) {
|
function clicky(v) {
|
||||||
return `<a href="#" onclick="showChangeLog('${appListing.id}')">${v}</a>`;
|
return `<a class="c-hand" onclick="showChangeLog('${appListing.id}')">${v}</a>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!appInstalled) {
|
if (!appInstalled) {
|
||||||
|
|
Loading…
Reference in New Issue