mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 10:45:56 +00:00
format note on the client
This commit is contained in:
@@ -71,9 +71,9 @@ Element.prototype.fadeOut = function() {
|
||||
}());
|
||||
};
|
||||
|
||||
Element.prototype.fadeIn = function(display){
|
||||
Element.prototype.fadeIn = function(display = undefined){
|
||||
this.style.opacity = 0;
|
||||
this.style.display = display || "block";
|
||||
this.style.display = display == undefined ? "block" : display;
|
||||
const self = this;
|
||||
|
||||
(function fade() {
|
||||
|
||||
Reference in New Issue
Block a user