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 border="0px" |
| 10 style='border: solid 1px red' |
| 11 contentEditable |
| 12 > |
| 13 </object> |
| 14 |
| 15 <script> |
| 16 function dragLocation() { |
| 17 return [id_message.offsetLeft + 10, |
| 18 id_message.offsetTop + 5]; |
| 19 } |
| 20 |
| 21 function dropLocation() { |
| 22 return [plugin.offsetLeft + plugin.offsetWidth / 2, |
| 23 plugin.offsetTop + plugin.offsetHeight / 2]; |
| 24 } |
| 25 |
| 26 function SetSrc(src) { |
| 27 plugin = document.getElementById('plugin'); |
| 28 plugin.src = src; |
| 29 } |
| 30 </script> |
OLD | NEW |