editor: fixing, refactoring, improving styling in choice exercises
[fnpeditor.git] / src / editor / plugins / core / edumed / choice / choiceSingle.js
index 6824d44..68ff576 100644 (file)
@@ -44,7 +44,7 @@ _.extend(choiceSingle, {
 });
 
 var RadioView = function(checked, name, onValueChange) {
-    this.dom = $('<input type="radio" style="float: left; margin-right: 40px;">')
+    this.dom = $('<input type="radio">')
             .attr('checked', checked)
             .attr('name', name);
     this.dom.on('change', function() {