summaryrefslogtreecommitdiffstats
path: root/public/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/app.js')
-rw-r--r--public/js/app.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/public/js/app.js b/public/js/app.js
index 4c376ea088..88ddd471dc 100644
--- a/public/js/app.js
+++ b/public/js/app.js
@@ -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;