Commit 55391a83c6b586db9fa8e8453bd6e088caf7952e

Authored by Luigi Serra
1 parent 21047e03

client update

Showing 1 changed file with 2 additions and 1 deletions
js/deepClient.js
... ... @@ -51,7 +51,8 @@ var ComponentService =
51 51 for(var i = 0; i < keys.length; i++){
52 52 datalet_code += ' ' + keys[i] + '=\'' + params.params[keys[i]] +'\'';
53 53 }
54   - datalet_code += " fields='" + JSON.stringify(params.fields) + "'></" + params.component + ">";
  54 +
  55 + datalet_code += " fields='" + JSON.stringify(params.fields) + "'></" + params.component + ">";
55 56  
56 57 (params.placeHolder.constructor == HTMLElement || params.placeHolder.constructor == HTMLDivElement) ? $(params.placeHolder).html(datalet_code) :/*Injection from Web Component*/
57 58 $("#" + params.placeHolder).html(datalet_code);/*Injection from a static web page*/
... ...