Add 'Store in drive' menu entry to the poll and sheet apps

This commit is contained in:
yflory 2021-05-05 10:41:13 +02:00
parent ae1eff6e3b
commit e62d654b90
2 changed files with 6 additions and 0 deletions

View File

@ -2551,6 +2551,9 @@ define([
common.createButton('hashtag', true).appendTo(toolbar.$drawer);
}
var $store = common.createButton('storeindrive', true);
toolbar.$drawer.append($store);
var $forget = common.createButton('forget', true, {}, function (err) {
if (err) { return; }
setEditable(false);

View File

@ -1175,6 +1175,9 @@ define([
metadataMgr.updateMetadata(meta);
});
var $store = common.createButton('storeindrive', true);
$drawer.append($store);
/* add a forget button */
var forgetCb = function (err) {
if (err) { return; }