Merge branch 'master' into OPW-Moderation-Update

Conflicts:
	mediagoblin/db/migrations.py
This commit is contained in:
tilly-Q
2013-09-12 18:58:04 -04:00
131 changed files with 23317 additions and 7306 deletions

View File

@@ -33,4 +33,17 @@ var notifications = {};
$(document).ready(function () {
notifications.init();
var mark_all_comments_seen = document.getElementById('mark_all_comments_seen');
if (mark_all_comments_seen) {
mark_all_comments_seen.href = '#';
mark_all_comments_seen.onclick = function() {
$.ajax({
type: 'GET',
url: mark_all_comments_seen_url,
success: function(res, status, xhr) { window.location.reload(); },
});
}
}
});