Skip to content

Commit 6f9da7a

Browse files
Andries SmitAndries-Smit
authored andcommitted
Remove UI error message
1 parent 7eddde6 commit 6f9da7a

File tree

6 files changed

+7
-14
lines changed

6 files changed

+7
-14
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Apache License
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright {yyyy} {name of copyright owner}
189+
Copyright 2019 Mendix BV
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# Microflow Timer [![Support](https://img.shields.io/badge/Mendix%20Support%3A-Platform-green.svg)](https://docs.mendix.com/community/app-store/app-store-content-support)
22

3-
This widget can be used to time and execute a Microflow or Nanoflow as long as a certain form is open. The microflow or nanoflow can be executed once or repeatedly, in which case it will not stop until it returns false or until the form is closed.
4-
5-
## Contributing
6-
7-
For more information on contributing to this repository visit [Contributing to a GitHub repository](https://world.mendix.com/display/howto50/Contributing+to+a+GitHub+repository)!
3+
This widget can be used to time and execute a Microflow or Nanoflow as long as a certain form is open. The microflow or nanoflow can be executed once or repeatedly, in which case it will not stop until it returns false or until the form is closed. In offline offline profile only a nanoflow can be used.
84

95
## Typical usage scenario
106

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "MicroflowTimer",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "",
55
"license": "",
66
"author": "",

src/MicroflowTimer/MicroflowTimer.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<widget id="MicroflowTimer.widget.MicroflowTimer" needsEntityContext="true" offlineCapable="true" xmlns="http://www.mendix.com/widget/1.0/">
3-
<name>MicroflowTimer</name>
4-
<description>The description of this widget</description>
3+
<name>Microflow Timer</name>
4+
<description>Time based call microflow or nanoflow action</description>
55
<icon></icon>
6-
76
<properties>
87
<property key="interval" type="integer" defaultValue="30000">
98
<caption>Interval (in ms)</caption>

src/MicroflowTimer/widget/MicroflowTimer.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ define([
198198
}),
199199
error: lang.hitch(this, function(error) {
200200
logger.error(this.id + ": An error ocurred while executing microflow: ", error);
201-
mx.ui.error("An error ocurred while executing microflow" + error.message);
202201
})
203202
};
204203

@@ -228,7 +227,6 @@ define([
228227
}),
229228
error: lang.hitch(this, function(error) {
230229
logger.error(this.id + ": An error ocurred while executing nanoflow: ", error);
231-
mx.ui.error("An error ocurred while executing nanoflow" + error.message);
232230
})
233231
});
234232
}

0 commit comments

Comments
 (0)