File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
- ## [ 0.5.0] ( https://github.com/opal/opal-jquery/compare/v0.4.3 ...HEAD ) Unreleased
1
+ ## [ 0.5.0] ( https://github.com/opal/opal-jquery/compare/v0.4.4 ...HEAD ) Unreleased
2
2
3
3
* see diff*
4
4
5
+ ## [ 0.4.4] ( https://github.com/opal/opal-jquery/compare/v0.4.3...v0.4.4 ) 2019-07-01
6
+
7
+ * Use ` ::Native::Wrapper ` where available
8
+
5
9
## [ 0.4.3] ( https://github.com/opal/opal-jquery/compare/v0.4.2...v0.4.3 ) 2018-09-07
6
10
7
11
* Add ` Element#== ` as an alias of ` .is() `
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ module Browser
6
6
# Generally, you will want to use the top level {::Window} instance, which
7
7
# wraps `window` from the main page.
8
8
class Window
9
- include Native
9
+ # In more recent Opal versions Native::Wrapper should be used
10
+ include defined? ( Native ::Wrapper ) ? Native ::Wrapper : Native
10
11
11
12
# Returns this {Window} instance wrapped as an {Element}. Useful for
12
13
# delegating jQuery events, which allows the use of `window` as target.
You can’t perform that action at this time.
0 commit comments