This commit is contained in:
Zixaphir 2014-04-03 15:06:48 -07:00
parent 6df7f1c4da
commit 27b745ce7d
3 changed files with 5 additions and 10 deletions

View File

@ -6573,12 +6573,10 @@
className: 'flagSelector'
});
fn = function(val) {
var el;
el = $.el('option', {
return $.add(select, $.el('option', {
value: val[0],
textContent: val[1]
});
return $.add(select, el);
}));
};
_ref = [['0', 'None'], ['US', 'American'], ['KP', 'Best Korean'], ['BL', 'Black Nationalist'], ['CM', 'Communist'], ['CF', 'Confederate'], ['RE', 'Conservative'], ['EU', 'European'], ['GY', 'Gay'], ['PC', 'Hippie'], ['IL', 'Israeli'], ['DM', 'Liberal'], ['RP', 'Libertarian'], ['MF', 'Muslim'], ['NZ', 'Nazi'], ['OB', 'Obama'], ['PR', 'Pirate'], ['RB', 'Rebel'], ['TP', 'Tea Partier'], ['TX', 'Texan'], ['TR', 'Tree Hugger'], ['WP', 'White Supremacist']];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {

View File

@ -6618,12 +6618,10 @@
className: 'flagSelector'
});
fn = function(val) {
var el;
el = $.el('option', {
return $.add(select, $.el('option', {
value: val[0],
textContent: val[1]
});
return $.add(select, el);
}));
};
_ref = [['0', 'None'], ['US', 'American'], ['KP', 'Best Korean'], ['BL', 'Black Nationalist'], ['CM', 'Communist'], ['CF', 'Confederate'], ['RE', 'Conservative'], ['EU', 'European'], ['GY', 'Gay'], ['PC', 'Hippie'], ['IL', 'Israeli'], ['DM', 'Liberal'], ['RP', 'Libertarian'], ['MF', 'Muslim'], ['NZ', 'Nazi'], ['OB', 'Obama'], ['PR', 'Pirate'], ['RB', 'Rebel'], ['TP', 'Tea Partier'], ['TX', 'Texan'], ['TR', 'Tree Hugger'], ['WP', 'White Supremacist']];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {

View File

@ -555,10 +555,9 @@ QR =
className: 'flagSelector'
fn = (val) ->
el = $.el 'option',
$.add select, $.el 'option',
value: val[0]
textContent: val[1]
$.add select, el
fn flag for flag in [
['0', 'None']