This repository has been archived on 2019-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-27 01:13:43 +02:00

10 lines
204 B
JavaScript

(function($) {
'use strict';
$(function() {
$('.cancel-link').click(function(e) {
e.preventDefault();
window.history.back();
});
});
})(django.jQuery);