evmux-app-framework 0.0.74 → 0.0.75
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.
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@ export default class AppsObserverModulesHandler extends AppsObserverRequestHandl
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
async displayRichTextEditor(requestObj) {
|
|
27
|
-
return {value: window.mockRichText || '<b>This is a test</b>'}
|
|
27
|
+
return {value: window.mockRichText || '<b>This is a test</b> ' + new Date().getTime()}
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
async displayToast(requestObj) {
|
|
@@ -35,7 +35,7 @@ function raiseCommentsEvent(event) {
|
|
|
35
35
|
<div style="display: flex;">
|
|
36
36
|
<div class="panel" >
|
|
37
37
|
Settings (src/settings.html):<br />
|
|
38
|
-
<iframe ref="settingsIframe" width="500" height="500"></iframe>
|
|
38
|
+
<iframe ref="settingsIframe" width="500" height="500" style="resize:both"></iframe>
|
|
39
39
|
</div>
|
|
40
40
|
|
|
41
41
|
<div style="width: 50px"></div>
|