mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
24 lines
626 B
JavaScript
24 lines
626 B
JavaScript
|
Discourse.AdminBackupsView = Discourse.View.extend({
|
||
|
classNames: ["admin-backups"],
|
||
|
|
||
|
_hijackDownloads: function() {
|
||
|
this.$().on("mouseup.admin-backups", "a.download", function (e) {
|
||
|
var $link = $(e.currentTarget);
|
||
|
|
||
|
if (!$link.data("href")) {
|
||
|
$link.addClass("no-href");
|
||
|
$link.data("href", $link.attr("href"));
|
||
|
$link.attr("href", null);
|
||
|
$link.data("auto-route", true);
|
||
|
}
|
||
|
|
||
|
Discourse.URL.redirectTo($link.data("href"));
|
||
|
});
|
||
|
}.on("didInsertElement"),
|
||
|
|
||
|
_removeBindings: function() {
|
||
|
this.$().off("mouseup.admin-backups");
|
||
|
}.on("willDestroyElement")
|
||
|
|
||
|
});
|