mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 18:02:50 +01:00
Create text area for dimensions
This commit is contained in:
parent
bd06a25f7f
commit
1d62b5f186
1 changed files with 7 additions and 0 deletions
|
|
@ -113,6 +113,13 @@ function start() {
|
|||
app.viewer.bus.subscribe('dimScale', function(value) {
|
||||
dimScale.input.val(value);
|
||||
});
|
||||
app.dock.views['Dimensions'].node.append($('<textarea />', {css: {
|
||||
width: '100%',
|
||||
resize: 'vertical',
|
||||
background: 'inherit',
|
||||
border : 'none',
|
||||
color: '#C4E1A4'
|
||||
} }));
|
||||
}
|
||||
window.___log = function(log) {
|
||||
$('#log').append( " *****************<br><br><br><br>");
|
||||
|
|
|
|||
Loading…
Reference in a new issue