verstak 0.95.25045 → 0.95.25046
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -222,8 +222,8 @@ export function isSplitViewPartition(childDriver) {
|
|
|
222
222
|
function overrideMethod(declaration, method, func) {
|
|
223
223
|
const baseScript = declaration[method];
|
|
224
224
|
declaration[method] = baseScript !== undefined
|
|
225
|
-
? (el, base) => { baseScript(el, base); func(el); }
|
|
226
|
-
: (el, base) => { base(); func(el); };
|
|
225
|
+
? (el, base) => { baseScript.call(el, el, base); func.call(el, el); }
|
|
226
|
+
: (el, base) => { base(); func.call(el, el); };
|
|
227
227
|
}
|
|
228
228
|
export class PartitionDriver extends HtmlDriver {
|
|
229
229
|
runScript(node) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verstak",
|
|
3
|
-
"version": "0.95.
|
|
3
|
+
"version": "0.95.25046",
|
|
4
4
|
"description": "Verstak - Front-End Library",
|
|
5
5
|
"publisher": "Nezaboodka Software",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"markdown-it": "^14.1.0",
|
|
43
43
|
"markdown-it-prism": "^2.3.0",
|
|
44
44
|
"prismjs": "^1.30.0",
|
|
45
|
-
"reactronic": "^0.95.
|
|
45
|
+
"reactronic": "^0.95.25046"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/markdown-it": "14.1.2",
|