Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4133335
watchlistexpiry.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
908 B
Referenced Files
None
Subscribers
None
watchlistexpiry.js
View Options
(
function
()
{
/*
* On touch devices, make it possible to click on the watchlist expiry clock icon
* and get a text display of the remaining days or hours for that watchlist item.
*
* @private
* @param {Event} event The click event.
*/
function
addDaysLeftMessages
(
event
)
{
const
$clock
=
$
(
event
.
target
);
const
timeLeft
=
$clock
.
data
(
'days-left'
);
if
(
timeLeft
===
undefined
)
{
// Give up if there's no data attribute (e.g. in the watchlist legend).
return
;
}
const
msg
=
timeLeft
>
0
?
mw
.
msg
(
'watchlist-expiry-days-left'
,
timeLeft
)
:
mw
.
msg
(
'watchlist-expiry-hours-left'
);
$clock
.
after
(
$
(
'<span>'
)
.
addClass
(
'mw-watchlistexpiry-msg'
)
.
text
(
mw
.
msg
(
'parentheses'
,
msg
)
)
);
}
$
(
()
=>
{
if
(
'ontouchstart'
in
document
.
documentElement
)
{
$
(
'.mw-changesList-watchlistExpiry'
).
one
(
'click'
,
addDaysLeftMessages
);
}
}
);
}()
);
File Metadata
Details
Attached
Mime Type
text/x-asm
Expires
Wed, Aug 19, 12:05 (3 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
05/f6/17b3342b60caf7c2810d17c27d24
Default Alt Text
watchlistexpiry.js (908 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment