Fix #5398 and #5395 - Fix tests failing due to problem creating connection for alembic
[larjonas-mediagoblin.git] / mediagoblin / static / js / notifications.js
blob78694f595cc6bb3519a2869d8ca725ca5804862d
1 'use strict';
2 /**
3  * GNU MediaGoblin -- federated, autonomous media hosting
4  * Copyright (C) 2011, 2012 MediaGoblin contributors.  See AUTHORS.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
20 var notifications = {};
22 (function (n) {
23     n._base = '/';
24     n._endpoint = 'notifications/json';
26     n.init = function () {
27         $('.notification-gem').on('click', function () {
28             $('.header_dropdown_down:visible').click();
29         });
30     }
32 })(notifications)
34 $(document).ready(function () {
35     notifications.init();
37     var mark_all_comments_seen = document.getElementById('mark_all_comments_seen');
39     if (mark_all_comments_seen) {
40         mark_all_comments_seen.href = '#';
41         mark_all_comments_seen.onclick = function() {
42             $.ajax({
43                 type: 'GET',
44                 url: mark_all_comments_seen_url,
45                 success: function(res, status, xhr) { window.location.reload(); },
46             });
47         }
48     }
49 });