mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 22:42:25 +00:00
Fix unwatch button not working in Firefox
This commit is contained in:
parent
536f65b8ad
commit
0b4fcf1224
@ -406,8 +406,10 @@ function initRepository() {
|
||||
// watching script
|
||||
(function () {
|
||||
var $watch = $('#repo-watching'),
|
||||
watchLink = $watch.data("watch"),
|
||||
unwatchLink = $watch.data("unwatch");
|
||||
watchLink = $watch.attr("data-watch"),
|
||||
// Use $.attr() to work around jQuery not finding $.data("unwatch") in Firefox,
|
||||
// which has a method "unwatch" on `Object` that gets returned instead.
|
||||
unwatchLink = $watch.attr("data-unwatch");
|
||||
$watch.on('click', '.to-watch', function () {
|
||||
if ($watch.hasClass("watching")) {
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user