mirror of
https://github.com/vladmandic/automatic
synced 2026-08-31 09:31:00 +02:00
add a add decription button
This commit is contained in:
@@ -118,6 +118,12 @@ function popup(contents){
|
||||
close.title = "Close";
|
||||
globalPopup.appendChild(close)
|
||||
|
||||
var addDescrip = document.createElement('div')
|
||||
addDescrip.classList.add('global-popup-addDescrip');
|
||||
addDescrip.onclick = function(){ alert("add descript you idiot") };
|
||||
addDescrip.title = "add descript";
|
||||
globalPopup.appendChild(addDescrip)
|
||||
|
||||
globalPopupInner = document.createElement('div')
|
||||
globalPopupInner.onclick = function(event){ event.stopPropagation(); return false; };
|
||||
globalPopupInner.classList.add('global-popup-inner');
|
||||
|
||||
Reference in New Issue
Block a user