Width hack.

This commit is contained in:
Lars Jung 2016-07-23 22:30:26 +02:00
parent c486962ff8
commit e52b3dd440
19 changed files with 132 additions and 90 deletions

View file

@ -11,7 +11,7 @@ const settings = Object.assign({
packageName: 'package',
alwaysVisible: false
}, allsettings.download);
const template =
const tpl =
`<div id="download" class="tool">
<img src="${resource.image('download')}" alt="download"/>
</div>`;
@ -60,7 +60,7 @@ const init = () => {
return;
}
$download = dom(template)
$download = dom(tpl)
.hide()
.appTo('#toolbar')
.on('click', onClick);