Small flags input reflow

This commit is contained in:
Zixaphir 2014-04-03 15:05:36 -07:00 committed by ccd0
parent 198df86bfd
commit a63a5e786c

View File

@ -577,14 +577,17 @@ QR =
$.event 'QRDialogCreation', null, dialog
flags: ->
fn = (val) -> $.el 'option',
value: val[0]
textContent: val[1]
select = $.el 'select',
name: 'flag'
className: 'flagSelector'
$.add select, fn flag for flag in [
fn = (val) ->
el = $.el 'option',
value: val[0]
textContent: val[1]
$.add select, el
fn flag for flag in [
['0', 'None']
['US', 'American']
['KP', 'Best Korean']