mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Make revision button glow on ctrl-s and increase duration
This commit is contained in:
parent
59a9ff404d
commit
0ff5137da3
1 changed files with 3 additions and 3 deletions
|
@ -3650,10 +3650,10 @@ function Ace2Inner(){
|
||||||
{
|
{
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
var originalBackground = parent.parent.$('#revisionlink').css("background")
|
var originalBackground = parent.parent.$('#revisionlink').css("background")
|
||||||
parent.parent.$('#revisionlink').css({"background":"lightyellow"});
|
parent.parent.$('#revisionlink').css({"background":"lightyellow", 'box-shadow': '0 0 50px yellow'});
|
||||||
top.setTimeout(function(){
|
top.setTimeout(function(){
|
||||||
parent.parent.$('#revisionlink').css({"background":originalBackground});
|
parent.parent.$('#revisionlink').css({"background":originalBackground, 'box-shadow': 'none'});
|
||||||
}, 500);
|
}, 1000);
|
||||||
parent.parent.pad.collabClient.sendMessage({"type":"SAVE_REVISION"}); /* The parent.parent part of this is BAD and I feel bad.. It may break something */
|
parent.parent.pad.collabClient.sendMessage({"type":"SAVE_REVISION"}); /* The parent.parent part of this is BAD and I feel bad.. It may break something */
|
||||||
specialHandled = true;
|
specialHandled = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue