updated by GasGit automation
This commit is contained in:
parent
9237685178
commit
ee27df2bb1
1 changed files with 24 additions and 1 deletions
|
@ -28,8 +28,31 @@ var Client = (function(client) {
|
||||||
})
|
})
|
||||||
.withSuccessHandler(function (result) {
|
.withSuccessHandler(function (result) {
|
||||||
})
|
})
|
||||||
.startPicker(Process.control.code.svg.value);
|
.startPicker(Process.control.code.svg.value,Process.control.code.picker.value);
|
||||||
|
};
|
||||||
|
|
||||||
|
client.insertImage = function (png) {
|
||||||
|
|
||||||
|
spinCursor();
|
||||||
|
|
||||||
|
google.script.run
|
||||||
|
.withFailureHandler(function(error) {
|
||||||
|
resetCursor();
|
||||||
|
App.showNotification ("Failed to insert image", error);
|
||||||
|
})
|
||||||
|
.withSuccessHandler(function (result) {
|
||||||
|
resetCursor();
|
||||||
|
})
|
||||||
|
.insertImage(png);
|
||||||
|
};
|
||||||
|
|
||||||
|
function resetCursor() {
|
||||||
|
Utils.el ('spinner').style.display = "none";
|
||||||
}
|
}
|
||||||
|
function spinCursor() {
|
||||||
|
Utils.el ('spinner').style.display = "block";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
return client;
|
return client;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue