File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## 2.6.0
4+
5+ ### Description
6+ - New feature close webview with params
7+ - Fixes to readme
8+
9+ #### Feature close with params
10+ Added params for ` Close ` method. The second webview can send parameters to the main webview on close.
11+ Usage:
12+ ``` js
13+ // Second webview
14+ webview .Close (success, error, params)
15+ ```
16+
17+ To receive this parameters, use ` webview.SubscribeCallback(success, error) ` . Parameters will be passed along the ` success ` callback.
18+
19+ ``` js
20+ // Main webview
21+ // This will be fired on second webview close
22+ webview .SubscribeCallback (function (params ) { console .log (params); }, function (){ console .log (' error' ); })
23+ ```
24+
25+ ### Breaking Changes
26+ No breaking changes on this release.
27+
28+ ### Changelog
29+ 863478d25bf269b87792e1a94c3dfaa401daec26 - version bump 2.6.0
30+ aad2154111edb48c9ab6bb39b8f543df065c6073 - updated readme
31+ 50e4d9a2546a1e26c6eae16fdf86ca94101651bd - readme updated
32+ 2576dba679752a853ed89687eb8bfbbe3953024b - moving the new parameter of hide to the end to avoid making a breaking change
33+ 8c4b0d612980be4230a160b90bf5143d99bb7a02 - changed the header of the readme
34+ f272b3dcb898cee62712d50b40753f867272390d - added new functionality to documentation
35+ 014425c21d7ed5d4aa1caf47703db19981d3bdc6 - corrected a parameter that was not necessarely static
36+ 0e03fe1e0e1879e50a1773d0b1ff91d4c00a72c1 - Added support for sending params when webview is closed
37+ 83ffc54fc5dea1c882cb4681577d25a0c106bf04 - Update README.md
38+ 9a8595d583e3603b2eb2a96df84c7754c47b4509 - Fixes spelling mistake.
39+
340## 2.5.1
441
542### Description
You can’t perform that action at this time.
0 commit comments