OLD | NEW |
(Empty) | |
| 1 <textarea id='id_message'> |
| 2 </textarea> |
| 3 |
| 4 <object id="plugin" |
| 5 tabindex="0" |
| 6 type="application/browser-plugin" |
| 7 width="240" |
| 8 height="120" |
| 9 style='border: solid 1px red' |
| 10 contentEditable |
| 11 > |
| 12 </object> |
| 13 |
| 14 <script> |
| 15 function dragLocation() { |
| 16 return [id_message.offsetLeft + id_message.offsetWidth / 2, |
| 17 id_message.offsetTop + id_message.offsetHeight / 2]; |
| 18 } |
| 19 |
| 20 function dropLocation() { |
| 21 return [plugin.offsetLeft + plugin.offsetWidth / 2, |
| 22 plugin.offsetTop + plugin.offsetHeight / 2]; |
| 23 } |
| 24 |
| 25 function SetSrc(src) { |
| 26 plugin = document.getElementById('plugin'); |
| 27 plugin.src = src; |
| 28 } |
| 29 </script> |
OLD | NEW |