>Форум Mozilla Россия http://forum.mozilla-russia.org/index.php >Сustom Buttons http://forum.mozilla-russia.org/viewforum.php?id=34 >[CB]Дополнительные возможности для кнопки загрузок http://forum.mozilla-russia.org/viewtopic.php?id=59849 |
bunda1 > 03-08-2013 23:21:18 |
Открывать список загрузок в библиотеке двойным левым кликом на кнопке загрузок ( Firefox 20+) Выделить код Код:// Открывать список загрузок в библиотеке двойным левым кликом на кнопке загрузки, от 03.08.2013. ................................ addEventListener("mousedown", function f(e) { if ( e.button !== 0 ) return; if ( e.target.id && ["downloads-button", "downloadsPanel", "downloads-indicator"].indexOf( e.target.id ) != -1 ) { if ( f.run == true ) { document.getElementById("appmenu_downloads").doCommand(); } f.run = true; setTimeout(function() { f.run = false }, 400 ); } }, true ); 03-08-2013 23:30:18 Выделить код Код:var itemCountLimit = 10; if(DownloadsCommon._privateSummary) DownloadsCommon._privateSummary._numToExclude = itemCountLimit; if(DownloadsCommon._summary) DownloadsCommon._summary._numToExclude = itemCountLimit; DownloadsView.kItemCountLimit = itemCountLimit; if(DownloadsPanel._state != DownloadsPanel.kStateUninitialized) { DownloadsView.onDataInvalidated(); DownloadsPanel.initialize(function() {}); } |
bunda1 > 04-08-2013 04:51:57 |
iDev.Pi |
Infocatcher > 04-08-2013 19:26:11 |
iDev.Pi пишет
Такой там тоже был: https://gist.github.com/Infocatcher/5387328/revisions. |