We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a8b135f + d23cda6 commit f873a58Copy full SHA for f873a58
3 files changed
CHANGELOG
@@ -2,6 +2,10 @@
2
ChangeLog
3
*********
4
5
+0.21.2 (2017-09-13)
6
+===================
7
+- Fix: Update jQuery onload invocation to be compatible with jQuery 3. (thanks, @sloria!)
8
+
9
0.21.1 (2017-07-20)
10
===================
11
- Fix: Quiet some overly-verbose error logging.
mfr/__init__.py
@@ -1,2 +1,2 @@
1
-__version__ = '0.21.1'
+__version__ = '0.21.2'
__import__('pkg_resources').declare_namespace(__name__)
mfr/server/static/js/mfr.js
@@ -82,7 +82,7 @@
82
self.pymParent.iframe.setAttribute('scrolling', 'yes');
83
84
self.pymParent.el.appendChild(self.spinner);
85
- $(self.pymParent.iframe).load(function () {
+ $(self.pymParent.iframe).on('load', function () {
86
self.pymParent.el.removeChild(self.spinner);
87
});
88
0 commit comments