We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9401b7 commit 2e83364Copy full SHA for 2e83364
django/conf/admin_media/js/admin/DateTimeShortcuts.js
@@ -171,7 +171,6 @@ var DateTimeShortcuts = {
171
172
dismissCalendar: function(num) {
173
document.getElementById(DateTimeShortcuts.calendarDivName1+num).style.display = 'none';
174
- window.onclick = null;
175
},
176
177
drawPrev: function(num) {
@@ -196,7 +195,7 @@ var DateTimeShortcuts = {
196
195
cancelEventPropagation: function(e) {
197
if (!e) var e = window.event;
198
e.cancelBubble = true;
199
- if (e.stripPropagation) e.stopPropagation();
+ if (e.stopPropagation) e.stopPropagation();
200
}
201
202
0 commit comments