+ address list for recipient
+ filter table helper * copy address simply by clicking on it
This commit is contained in:
@@ -43,11 +43,15 @@ class MainGUI {
|
||||
});
|
||||
}
|
||||
|
||||
renderTemplate(template, data) {
|
||||
renderTemplate(template, data, container) {
|
||||
var template = Handlebars.compile(ipcRenderer.sendSync('getTemplateContent', template));
|
||||
|
||||
$("#mainContent").empty();
|
||||
$("#mainContent").html(template(data));
|
||||
if (!container) {
|
||||
container = $("#mainContent")
|
||||
}
|
||||
|
||||
container.empty();
|
||||
container.html(template(data));
|
||||
}
|
||||
|
||||
copyToClipboard(text) {
|
||||
|
||||
Reference in New Issue
Block a user