mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-22 20:59:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@564 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
6e6856e1eb
commit
ca67eeea6e
19 changed files with 113 additions and 376 deletions
|
|
@ -8,7 +8,7 @@
|
|||
<div class="editor_title">{$lang->imagelink}</div>
|
||||
|
||||
<div class="header">{$lang->image_url}</div>
|
||||
<div class="body"><input type="text" class="image_url" id="image_url" value="" onblur="getImageScale();" /></div>
|
||||
<div class="body"><input type="text" class="image_url" id="image_url" value="{$manual_url}" onblur="getImageScale();" /></div>
|
||||
|
||||
<div class="header">{$lang->image_scale}</div>
|
||||
<div class="body">
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@ function getImage() {
|
|||
if(typeof(opener)=="undefined") return;
|
||||
|
||||
var node = opener.editorPrevNode;
|
||||
if(!node || node.nodeName != "IMG") return;
|
||||
if(!node || node.nodeName != "IMG") {
|
||||
getImageScale();
|
||||
return;
|
||||
}
|
||||
var src = node.getAttribute("src");
|
||||
var border = node.getAttribute("border");
|
||||
var align = node.getAttribute("align");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue