mirror of
https://github.com/friendica/friendica
synced 2025-04-25 02:30:11 +00:00
mucho progress on notifier, email style dfrn url's
This commit is contained in:
parent
e98aaa3cbd
commit
9a6a60a9c1
9 changed files with 181 additions and 34 deletions
12
include/main.js
Normal file
12
include/main.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
function openClose(theID) {
|
||||
if(document.getElementById(theID).style.display == "block") {
|
||||
document.getElementById(theID).style.display = "none"
|
||||
}
|
||||
else {
|
||||
document.getElementById(theID).style.display = "block"
|
||||
}
|
||||
}
|
||||
function openMenu(theID) {
|
||||
document.getElementById(theID).style.display = "block"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue