10 lines
204 B
JavaScript
10 lines
204 B
JavaScript
|
(function($) {
|
||
|
'use strict';
|
||
|
$(function() {
|
||
|
$('.cancel-link').click(function(e) {
|
||
|
e.preventDefault();
|
||
|
window.history.back();
|
||
|
});
|
||
|
});
|
||
|
})(django.jQuery);
|