Commit 69601047 by Don Mitchell

Merge pull request #1605 from MITx/bug/christina/misc

Use readonly attribute instead of disabled. Disabled text fields are not...
parents f8adfc62 b706d4a1
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
{{uploadDate}} {{uploadDate}}
</td> </td>
<td class="embed-col"> <td class="embed-col">
<input type="text" class="embeddable-xml-input" value='{{url}}' disabled> <input type="text" class="embeddable-xml-input" value='{{url}}' readonly>
</td> </td>
</tr> </tr>
</script> </script>
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
${asset['uploadDate']} ${asset['uploadDate']}
</td> </td>
<td class="embed-col"> <td class="embed-col">
<input type="text" class="embeddable-xml-input" value="${asset['url']}" disabled> <input type="text" class="embeddable-xml-input" value="${asset['url']}" readonly>
</td> </td>
</tr> </tr>
% endfor % endfor
...@@ -115,7 +115,7 @@ ...@@ -115,7 +115,7 @@
</div> </div>
<div class="embeddable"> <div class="embeddable">
<label>URL:</label> <label>URL:</label>
<input type="text" class="embeddable-xml-input" value='' disabled> <input type="text" class="embeddable-xml-input" value='' readonly>
</div> </div>
<form class="file-chooser" action="${upload_asset_callback_url}" <form class="file-chooser" action="${upload_asset_callback_url}"
method="post" enctype="multipart/form-data"> method="post" enctype="multipart/form-data">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment