Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix #1019
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Dec 29, 2015
1 parent c1ef97e commit 3d021c6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/src/plugins/meta.user/class.MetaCellRenderer.js
Expand Up @@ -241,8 +241,9 @@ Class.create("MetaCellRenderer", {
var content = element.down('span').innerHTML;
}catch(e){
}
if(content) value = parseInt(content);
else{
if(content && !!parseInt(content)) {
value = parseInt(content);
} else {
content = ajxpNode.getMetadata().get(attributeName);
if(content) value = parseInt(content);
}
Expand Down

0 comments on commit 3d021c6

Please sign in to comment.