backend-plus 2.5.2-betha.36 → 2.5.2-betha.37

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.
@@ -199,6 +199,7 @@ myOwn.wScreens.proc.result={
199
199
  }else{
200
200
  divResult.textContent = result;
201
201
  divResult.style.backgroundColor = '#9FA';
202
+ divResult.setAttribute('result','success');
202
203
  }
203
204
  },
204
205
  showGrid:function(result, divResult){
@@ -207,6 +208,8 @@ myOwn.wScreens.proc.result={
207
208
  showError:function(err, divResult){
208
209
  divResult.textContent = err.message;
209
210
  divResult.style.backgroundColor = 'orange';
211
+ divResult.setAttribute('result','error');
212
+
210
213
  },
211
214
  showDownloadUrl:function(result, divResult){
212
215
  divResult.innerHTML='';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "backend-plus",
3
3
  "description": "Backend for the anti Pareto rule",
4
- "version": "2.5.2-betha.36",
4
+ "version": "2.5.2-betha.37",
5
5
  "author": "Codenautas <codenautas@googlegroups.com>",
6
6
  "license": "MIT",
7
7
  "repository": "codenautas/backend-plus",