Skip to content

Commit

Permalink
Merge pull request #458 from harena-lab/development
Browse files Browse the repository at this point in the history
feat (cell): radio button setup
  • Loading branch information
santanche authored Oct 28, 2023
2 parents b36a832 + 672255a commit a04e009
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/adonisjs/public/dccs
8 changes: 5 additions & 3 deletions src/adonisjs/public/player/js/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -494,8 +494,9 @@ class PlayerManager {
element => element.type == 'field' && element.field == 'sliders')
sliders = (sliders != null) ? sliders.value : null

console.log('=== sliders')
console.log(sliders)
let radio = content.find(
element => element.type == 'field' && element.field == 'radio')
radio = (radio != null) ? radio.value : null

let mode = content.find(
element => element.type == 'field' && element.field == 'script_mode')
Expand All @@ -507,7 +508,8 @@ class PlayerManager {
blocks: blocks,
source: knot,
buttonTypes: '',
sliders: sliders},
sliders: sliders,
radio: radio},
mode, null, false, '/dccs/')
}

Expand Down
3 changes: 2 additions & 1 deletion src/adonisjs/public/themes/compact/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@
******************/

.dcc-input-choice-theme-label {
margin-left: 6px
margin-left: 6px;
font-size: 3vmin;
}

/* Input Typed DCC
Expand Down

0 comments on commit a04e009

Please sign in to comment.