Compress close and menu images, and only pre-load menu arrow when discoverability is requested. Resolves issue #734.

This commit is contained in:
Davide P. Cervone 2014-02-20 12:59:28 -05:00
parent 0b3454ce25
commit 3118eeb9d7
3 changed files with 4 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 725 B

After

Width:  |  Height:  |  Size: 552 B

View File

@ -440,8 +440,10 @@
// Preload images so they show up with the menu
//
getImages: function () {
var menu = new Image();
menu.src = CONFIG.button.src;
if (SETTINGS.discoverable) {
var menu = new Image();
menu.src = CONFIG.button.src;
}
}
};