Skip to content

Commit

Permalink
Merge branch 'developer' of master.render.es:/home/dedalo/master_deda…
Browse files Browse the repository at this point in the history
…lo into developer
  • Loading branch information
Paco committed Jun 21, 2021
2 parents 10f3fea + e11e9e9 commit 0594905
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion lib/Zend/Io/Reader.php
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ public final function readUInt24()
* @param string $value The binary data string.
* @return integer
*/
private final function _fromInt32($value)
private function _fromInt32($value)
{
list(, $int) = unpack('l*', $value);
return $int;
Expand Down
26 changes: 13 additions & 13 deletions lib/dedalo/component_portal/js/component_portal.js
Original file line number Diff line number Diff line change
Expand Up @@ -1807,20 +1807,20 @@ var component_portal = new function() {
section_tipo : section_tipo,
target_section_tipo : target_section_tipo,
},
parent : parent,
// custom_function_events : [{'type':'click','name':'tool_common.open_tool_portal'}],
parent : parent
})

btn_new_ep_find.addEventListener( "click", function(e){
// rows_limit check
if(rows_limit <= n_rows){
const exceeded_limit = get_label.exceeded_limit
top.inspector.show_log_msg("<span class='warning'>"+exceeded_limit+rows_limit+"</span>")
return false;
}else{
tool_common.open_tool_portal(btn_new_ep_find)
}
}, false)
// custom_function_events : [{'type':'click','name':'tool_common.open_tool_portal'}],

btn_new_ep_find.addEventListener( "click", function(e){
// rows_limit check
if(rows_limit <= n_rows){
const exceeded_limit = get_label.exceeded_limit
top.inspector.show_log_msg("<span class='warning'>"+exceeded_limit+rows_limit+"</span>")
return false;
}else{
tool_common.open_tool_portal(btn_new_ep_find)
}
}, false)

common.create_dom_element({
element_type : 'div',
Expand Down

0 comments on commit 0594905

Please sign in to comment.