mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-16 09:49:54 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1662 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
15801d738a
commit
8390ec57e2
75 changed files with 484 additions and 484 deletions
|
|
@ -1,11 +1,11 @@
|
|||
@charset "utf-8";
|
||||
|
||||
.plugin_detail_info_window {
|
||||
.widget_detail_info_window {
|
||||
width:600px;
|
||||
clear:both;
|
||||
}
|
||||
|
||||
.plugin_title {
|
||||
.widget_title {
|
||||
font-weight:bold;
|
||||
font-size:10pt;
|
||||
text-align:center;
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
background-color:#444444;
|
||||
}
|
||||
|
||||
.plugin_description {
|
||||
.widget_description {
|
||||
margin:5px 2px 10px 2px;
|
||||
border:1px solid #EEEEEE;
|
||||
color:#444444;
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
padding:5px;
|
||||
}
|
||||
|
||||
.plugin_header {
|
||||
.widget_header {
|
||||
clear:left;
|
||||
font-weight:bold;
|
||||
float:left;
|
||||
|
|
@ -31,20 +31,20 @@
|
|||
padding:5px 0px 5px 0px;
|
||||
}
|
||||
|
||||
.plugin_body {
|
||||
.widget_body {
|
||||
float:left;
|
||||
width:490px;
|
||||
padding:5px 0px 5px 0px;
|
||||
}
|
||||
|
||||
.plugin_var_description {
|
||||
.widget_var_description {
|
||||
clear:both;
|
||||
padding:5px 0px 5px 0px;
|
||||
margin-left:100px;
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
.plugin_button_area {
|
||||
.widget_button_area {
|
||||
clear:both;
|
||||
text-align:center;
|
||||
padding:5px 0px 5px 0px;
|
||||
|
|
@ -52,14 +52,14 @@
|
|||
border-top:1px solid #AAAAAA;
|
||||
}
|
||||
|
||||
.plugin_button {
|
||||
.widget_button {
|
||||
border:1px solid #AAAAAA;
|
||||
background-color:#FFFFFF;
|
||||
font-weight:bold;
|
||||
height:16px;
|
||||
}
|
||||
|
||||
.plugin_code_area {
|
||||
.widget_code_area {
|
||||
clear:both;
|
||||
padding:4px;
|
||||
border:1px solid #AAAAAA;
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
height:100px;
|
||||
}
|
||||
|
||||
.plugin_code_area textarea {
|
||||
.widget_code_area textarea {
|
||||
border:0px;
|
||||
height:100px;
|
||||
width:570px;
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
font-size:8pt;
|
||||
}
|
||||
|
||||
.plugin_mid_list {
|
||||
.widget_mid_list {
|
||||
float:left;
|
||||
margin-right:10px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,30 +3,30 @@
|
|||
{nl2br($lang->about_addon)}
|
||||
</div>
|
||||
|
||||
<!-- 플러그인의 목록 -->
|
||||
<!-- 위젯의 목록 -->
|
||||
<div>
|
||||
<table border="1" width="100%">
|
||||
<tr>
|
||||
<td>{$lang->plugin_name}</td>
|
||||
<td>{$lang->widget_name}</td>
|
||||
<td>{$lang->version}</td>
|
||||
<td>{$lang->author}</td>
|
||||
<td>{$lang->date}</td>
|
||||
<td>{$lang->path}</td>
|
||||
<td>{$lang->cmd_generate_code}</td>
|
||||
<td>{$lang->plugin_info}</td>
|
||||
<td>{$lang->widget_info}</td>
|
||||
</tr>
|
||||
<!--@foreach($plugin_list as $key => $val)-->
|
||||
<!--@foreach($widget_list as $key => $val)-->
|
||||
<tr>
|
||||
<td rowspan="2">
|
||||
{$val->title} <br />
|
||||
({$val->plugin})
|
||||
({$val->widget})
|
||||
</td>
|
||||
<td>{$val->version}</td>
|
||||
<td><a href="#" onclick="window.open('{$val->author->homepage}')">{$val->author->name}</a></td>
|
||||
<td>{$val->author->date}</td>
|
||||
<td>{$val->path}</td>
|
||||
<td><a href="#" onclick="popopen('{getUrl('','module','plugin','act','dispPluginGenerateCode','selected_plugin',$val->plugin)}','plugin_code_generate');return false">{$lang->cmd_generate_code}</a></td>
|
||||
<td><a href="#" onclick="popopen('{getUrl('','module','plugin','act','dispPluginInfo','selected_plugin',$val->plugin)}','plugin_info');return false">{$lang->cmd_view}</a></td>
|
||||
<td><a href="#" onclick="popopen('{getUrl('','module','widget','act','dispWidgetGenerateCode','selected_widget',$val->widget)}','widget_code_generate');return false">{$lang->cmd_generate_code}</a></td>
|
||||
<td><a href="#" onclick="popopen('{getUrl('','module','widget','act','dispWidgetInfo','selected_widget',$val->widget)}','widget_info');return false">{$lang->cmd_view}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<filter name="generate_code" module="plugin" act="procPluginGenerateCode">
|
||||
<filter name="generate_code" module="widget" act="procWidgetGenerateCode">
|
||||
<response callback_func="completeGenerateCode">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
<tag name="plugin_code" />
|
||||
<tag name="widget_code" />
|
||||
</response>
|
||||
</filter>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<filter name="generate_code_in_page" module="plugin" act="procPluginGenerateCode">
|
||||
<filter name="generate_code_in_page" module="widget" act="procWidgetGenerateCode">
|
||||
<response callback_func="completeGenerateCodeInPage">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
<tag name="plugin_code" />
|
||||
<tag name="widget_code" />
|
||||
</response>
|
||||
</filter>
|
||||
|
|
|
|||
|
|
@ -1,23 +1,23 @@
|
|||
/**
|
||||
* @file modules/plugin/js/plugin_admin.js
|
||||
* @file modules/widget/js/widget_admin.js
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief plugin 모듈의 관리자용 javascript
|
||||
* @brief widget 모듈의 관리자용 javascript
|
||||
**/
|
||||
|
||||
/* 생성된 코드를 textarea에 출력 */
|
||||
function completeGenerateCode(ret_obj) {
|
||||
var plugin_code = ret_obj["plugin_code"];
|
||||
var widget_code = ret_obj["widget_code"];
|
||||
|
||||
var zone = xGetElementById("plugin_code");
|
||||
zone.value = plugin_code;
|
||||
var zone = xGetElementById("widget_code");
|
||||
zone.value = widget_code;
|
||||
}
|
||||
|
||||
/* 생성된 코드를 에디터에 출력 */
|
||||
function completeGenerateCodeInPage(ret_obj,response_tags,params,fo_obj) {
|
||||
var plugin_code = ret_obj["plugin_code"];
|
||||
var widget_code = ret_obj["widget_code"];
|
||||
var module_srl = fo_obj.module_srl.value;
|
||||
|
||||
if(!opener || !plugin_code || !module_srl) {
|
||||
if(!opener || !widget_code || !module_srl) {
|
||||
window.close();
|
||||
return;
|
||||
}
|
||||
|
|
@ -29,8 +29,8 @@ function completeGenerateCodeInPage(ret_obj,response_tags,params,fo_obj) {
|
|||
orig_width = parseInt(xWidth(node),10)-6;
|
||||
orig_height = parseInt(xHeight(node),10)-6;
|
||||
|
||||
plugin_code = plugin_code.replace(/width([^p]+)px/ig,'width:'+orig_width+'px');
|
||||
plugin_code = plugin_code.replace(/height([^p]+)px/ig,'height:'+orig_height+'px');
|
||||
widget_code = widget_code.replace(/width([^p]+)px/ig,'width:'+orig_width+'px');
|
||||
widget_code = widget_code.replace(/height([^p]+)px/ig,'height:'+orig_height+'px');
|
||||
}
|
||||
|
||||
// 부모창에 에디터가 있으면 에디터에 추가
|
||||
|
|
@ -38,14 +38,14 @@ function completeGenerateCodeInPage(ret_obj,response_tags,params,fo_obj) {
|
|||
var iframe_obj = opener.editorGetIFrame(module_srl);
|
||||
if(iframe_obj) {
|
||||
opener.editorFocus(module_srl);
|
||||
opener.editorReplaceHTML(iframe_obj, plugin_code);
|
||||
opener.editorReplaceHTML(iframe_obj, widget_code);
|
||||
opener.editorFocus(module_srl);
|
||||
}
|
||||
}
|
||||
//window.close();
|
||||
}
|
||||
|
||||
/* 플러그인 코드 생성시 스킨을 고르면 컬러셋의 정보를 표시 */
|
||||
/* 위젯 코드 생성시 스킨을 고르면 컬러셋의 정보를 표시 */
|
||||
function doDisplaySkinColorset(sel, colorset) {
|
||||
var skin = sel.options[sel.selectedIndex].value;
|
||||
if(!skin) {
|
||||
|
|
@ -55,18 +55,18 @@ function doDisplaySkinColorset(sel, colorset) {
|
|||
}
|
||||
|
||||
var params = new Array();
|
||||
params["selected_plugin"] = xGetElementById("fo_plugin").selected_plugin.value;
|
||||
params["selected_widget"] = xGetElementById("fo_widget").selected_widget.value;
|
||||
params["skin"] = skin;
|
||||
params["colorset"] = colorset;
|
||||
|
||||
var response_tags = new Array("error","message","colorset_list");
|
||||
|
||||
exec_xml("plugin", "procPluginGetColorsetList", params, completeGetSkinColorset, response_tags, params);
|
||||
exec_xml("widget", "procWidgetGetColorsetList", params, completeGetSkinColorset, response_tags, params);
|
||||
}
|
||||
|
||||
/* 서버에서 받아온 컬러셋을 표시 */
|
||||
function completeGetSkinColorset(ret_obj, response_tags, params, fo_obj) {
|
||||
var sel = xGetElementById("fo_plugin").plugin_colorset;
|
||||
var sel = xGetElementById("fo_widget").widget_colorset;
|
||||
var length = sel.options.length;
|
||||
var selected_colorset = params["colorset"];
|
||||
for(var i=0;i<length;i++) sel.remove(0);
|
||||
|
|
@ -86,10 +86,10 @@ function completeGetSkinColorset(ret_obj, response_tags, params, fo_obj) {
|
|||
setFixedPopupSize();
|
||||
}
|
||||
|
||||
/* 페이지 모듈에서 내용의 플러그인을 더블클릭하여 수정하려고 할 경우 */
|
||||
/* 페이지 모듈에서 내용의 위젯을 더블클릭하여 수정하려고 할 경우 */
|
||||
var selected_node = null;
|
||||
function doFillPluginVars() {
|
||||
if(!opener || !opener.editorPrevNode || !opener.editorPrevNode.getAttribute("plugin")) return;
|
||||
function doFillWidgetVars() {
|
||||
if(!opener || !opener.editorPrevNode || !opener.editorPrevNode.getAttribute("widget")) return;
|
||||
|
||||
selected_node = opener.editorPrevNode;
|
||||
|
||||
|
|
@ -97,7 +97,7 @@ function doFillPluginVars() {
|
|||
var skin = selected_node.getAttribute("skin");
|
||||
var colorset = selected_node.getAttribute("colorset");
|
||||
|
||||
var fo_obj = xGetElementById("fo_plugin");
|
||||
var fo_obj = xGetElementById("fo_widget");
|
||||
|
||||
for(var name in fo_obj) {
|
||||
var node = fo_obj[name];
|
||||
|
|
@ -136,8 +136,8 @@ function doFillPluginVars() {
|
|||
}
|
||||
|
||||
// 컬러셋 설정
|
||||
if(skin && xGetElementById("plugin_colorset").options.length<1 && colorset) {
|
||||
doDisplaySkinColorset(xGetElementById("plugin_skin"), colorset);
|
||||
if(skin && xGetElementById("widget_colorset").options.length<1 && colorset) {
|
||||
doDisplaySkinColorset(xGetElementById("widget_skin"), colorset);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,25 +1,25 @@
|
|||
<!--%import("css/plugin.css")-->
|
||||
<!--%import("css/widget.css")-->
|
||||
|
||||
<div class="plugin_detail_info_window">
|
||||
<div class="widget_detail_info_window">
|
||||
|
||||
<div class="plugin_title">{$lang->plugin_maker}</div>
|
||||
<div class="widget_title">{$lang->widget_maker}</div>
|
||||
|
||||
<div class="plugin_header">{$lang->title}</div>
|
||||
<div class="plugin_body">{$plugin_info->title} ver {$plugin_info->version}</div>
|
||||
<div class="widget_header">{$lang->title}</div>
|
||||
<div class="widget_body">{$widget_info->title} ver {$widget_info->version}</div>
|
||||
|
||||
<div class="plugin_header">{$lang->author}</div>
|
||||
<div class="plugin_body"><a href="mailto:{$plugin_info->author->email_address}">{$plugin_info->author->name}</a></div>
|
||||
<div class="widget_header">{$lang->author}</div>
|
||||
<div class="widget_body"><a href="mailto:{$widget_info->author->email_address}">{$widget_info->author->name}</a></div>
|
||||
|
||||
<div class="plugin_header">{$lang->homepage}</div>
|
||||
<div class="plugin_body"><a href="#" onclick="window.open('{$plugin_info->author->homepage}');return false;">{$plugin_info->author->homepage}</a></div>
|
||||
<div class="widget_header">{$lang->homepage}</div>
|
||||
<div class="widget_body"><a href="#" onclick="window.open('{$widget_info->author->homepage}');return false;">{$widget_info->author->homepage}</a></div>
|
||||
|
||||
<div class="plugin_header">{$lang->regdate}</div>
|
||||
<div class="plugin_body">{$plugin_info->author->date}</div>
|
||||
<div class="widget_header">{$lang->regdate}</div>
|
||||
<div class="widget_body">{$widget_info->author->date}</div>
|
||||
|
||||
<div class="plugin_header">{$lang->description}</div>
|
||||
<div class="plugin_body">{nl2br($plugin_info->author->description)}</div>
|
||||
<div class="widget_header">{$lang->description}</div>
|
||||
<div class="widget_body">{nl2br($widget_info->author->description)}</div>
|
||||
|
||||
<div class="plugin_button_area">
|
||||
<div class="widget_button_area">
|
||||
<a href="#" onclick="window.close();">{$lang->cmd_close}</a>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,21 +1,21 @@
|
|||
<!--%import("filter/generate_code.xml")-->
|
||||
<!--%import("js/plugin_admin.js")-->
|
||||
<!--%import("css/plugin.css")-->
|
||||
<!--%import("js/widget_admin.js")-->
|
||||
<!--%import("css/widget.css")-->
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, generate_code);" id="fo_plugin">
|
||||
<input type="hidden" name="selected_plugin" value="{$selected_plugin}" />
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, generate_code);" id="fo_widget">
|
||||
<input type="hidden" name="selected_widget" value="{$selected_widget}" />
|
||||
|
||||
<div class="plugin_detail_info_window">
|
||||
<div class="widget_detail_info_window">
|
||||
|
||||
<div class="plugin_title">{$lang->cmd_generate_code}</div>
|
||||
<div class="widget_title">{$lang->cmd_generate_code}</div>
|
||||
|
||||
<div class="plugin_description">{$lang->about_plugin_code}</div>
|
||||
<div class="widget_description">{$lang->about_widget_code}</div>
|
||||
|
||||
<div class="plugin_header">{$lang->plugin}</div>
|
||||
<div class="plugin_body">{$plugin_info->title} ver {$plugin_info->version}</div>
|
||||
<div class="widget_header">{$lang->widget}</div>
|
||||
<div class="widget_body">{$widget_info->title} ver {$widget_info->version}</div>
|
||||
|
||||
<div class="plugin_header">{$lang->skin}</div>
|
||||
<div class="plugin_body">
|
||||
<div class="widget_header">{$lang->skin}</div>
|
||||
<div class="widget_body">
|
||||
<select name="skin" onchange="doDisplaySkinColorset(this);return false;">
|
||||
<option value=""> </option>
|
||||
<!--@foreach($skin_list as $key => $val)-->
|
||||
|
|
@ -25,17 +25,17 @@
|
|||
</div>
|
||||
|
||||
<div id="colorset_area" style="display:none">
|
||||
<div class="plugin_header">{$lang->colorset}</div>
|
||||
<div class="plugin_body">
|
||||
<select name="colorset" id="plugin_colorset">
|
||||
<div class="widget_header">{$lang->colorset}</div>
|
||||
<div class="widget_body">
|
||||
<select name="colorset" id="widget_colorset">
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--@foreach($plugin_info->extra_var as $id => $var)-->
|
||||
<div class="plugin_header">{$var->name}</div>
|
||||
<!--@foreach($widget_info->extra_var as $id => $var)-->
|
||||
<div class="widget_header">{$var->name}</div>
|
||||
|
||||
<div class="plugin_body">
|
||||
<div class="widget_body">
|
||||
<!--@if($var->type == "text")-->
|
||||
<input type="text" name="{$id}" value="" />
|
||||
|
||||
|
|
@ -51,22 +51,22 @@
|
|||
|
||||
<!--@elseif($var->type == "mid_list")-->
|
||||
<!--@foreach($mid_list as $key => $val)-->
|
||||
<div class="plugin_mid_list">
|
||||
<div class="widget_mid_list">
|
||||
<input type="checkbox" value="{$key}" name="{$id}" id="chk_mid_list_{$key}" />
|
||||
<label for="chk_mid_list_{$key}">{$key} ({$val->browser_title})</label>
|
||||
</div>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
</div>
|
||||
<div class="plugin_var_description">{$var->description}</div>
|
||||
<div class="widget_var_description">{$var->description}</div>
|
||||
<!--@end-->
|
||||
|
||||
<div class="plugin_button_area">
|
||||
<input type="submit" value="{$lang->cmd_generate_code}" class="plugin_button" />
|
||||
<input type="button" onclick="self.close()" value="{$lang->cmd_close}" class="plugin_button" />
|
||||
<div class="widget_button_area">
|
||||
<input type="submit" value="{$lang->cmd_generate_code}" class="widget_button" />
|
||||
<input type="button" onclick="self.close()" value="{$lang->cmd_close}" class="widget_button" />
|
||||
</div>
|
||||
|
||||
<div class="plugin_code_area"><textarea readonly="true" id="plugin_code"></textarea></div>
|
||||
<div class="widget_code_area"><textarea readonly="true" id="widget_code"></textarea></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,23 +1,23 @@
|
|||
<!--%import("filter/generate_code_in_page.xml")-->
|
||||
<!--%import("js/plugin_admin.js")-->
|
||||
<!--%import("css/plugin.css")-->
|
||||
<!--%import("js/widget_admin.js")-->
|
||||
<!--%import("css/widget.css")-->
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, generate_code_in_page);" id="fo_plugin">
|
||||
<input type="hidden" name="selected_plugin" value="{$selected_plugin}" />
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, generate_code_in_page);" id="fo_widget">
|
||||
<input type="hidden" name="selected_widget" value="{$selected_widget}" />
|
||||
<input type="hidden" name="module_srl" value="{$module_srl}" />
|
||||
|
||||
<div class="plugin_detail_info_window">
|
||||
<div class="widget_detail_info_window">
|
||||
|
||||
<div class="plugin_title">{$plugin_info->title} ver {$plugin_info->version}</div>
|
||||
<div class="widget_title">{$widget_info->title} ver {$widget_info->version}</div>
|
||||
|
||||
<div class="plugin_description">{$lang->about_plugin_code_in_page}</div>
|
||||
<div class="widget_description">{$lang->about_widget_code_in_page}</div>
|
||||
|
||||
<div class="plugin_header">{$lang->description}</div>
|
||||
<div class="plugin_body">{nl2br($plugin_info->author->description)}</div>
|
||||
<div class="widget_header">{$lang->description}</div>
|
||||
<div class="widget_body">{nl2br($widget_info->author->description)}</div>
|
||||
|
||||
<div class="plugin_header">{$lang->skin}</div>
|
||||
<div class="plugin_body">
|
||||
<select name="skin" onchange="doDisplaySkinColorset(this,'');return false;" id="plugin_skin">
|
||||
<div class="widget_header">{$lang->skin}</div>
|
||||
<div class="widget_body">
|
||||
<select name="skin" onchange="doDisplaySkinColorset(this,'');return false;" id="widget_skin">
|
||||
<option value=""> </option>
|
||||
<!--@foreach($skin_list as $key => $val)-->
|
||||
<option value="{$key}">{$val->title} ({$key})</option>
|
||||
|
|
@ -26,17 +26,17 @@
|
|||
</div>
|
||||
|
||||
<div id="colorset_area" style="display:none">
|
||||
<div class="plugin_header">{$lang->colorset}</div>
|
||||
<div class="plugin_body">
|
||||
<select name="colorset" id="plugin_colorset">
|
||||
<div class="widget_header">{$lang->colorset}</div>
|
||||
<div class="widget_body">
|
||||
<select name="colorset" id="widget_colorset">
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--@foreach($plugin_info->extra_var as $id => $var)-->
|
||||
<div class="plugin_header">{$var->name}</div>
|
||||
<!--@foreach($widget_info->extra_var as $id => $var)-->
|
||||
<div class="widget_header">{$var->name}</div>
|
||||
|
||||
<div class="plugin_body">
|
||||
<div class="widget_body">
|
||||
<!--@if($var->type == "text")-->
|
||||
<input type="text" name="{$id}" value="" />
|
||||
|
||||
|
|
@ -52,19 +52,19 @@
|
|||
|
||||
<!--@elseif($var->type == "mid_list")-->
|
||||
<!--@foreach($mid_list as $key => $val)-->
|
||||
<div class="plugin_mid_list">
|
||||
<div class="widget_mid_list">
|
||||
<input type="checkbox" value="{$key}" name="{$id}" id="chk_mid_list_{$key}" />
|
||||
<label for="chk_mid_list_{$key}">{$key} ({$val->browser_title})</label>
|
||||
</div>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
</div>
|
||||
<div class="plugin_var_description">{$var->description}</div>
|
||||
<div class="widget_var_description">{$var->description}</div>
|
||||
<!--@end-->
|
||||
|
||||
<div class="plugin_button_area">
|
||||
<input type="submit" value="{$lang->cmd_insert}" class="plugin_button" />
|
||||
<input type="button" onclick="self.close()" value="{$lang->cmd_close}" class="plugin_button" />
|
||||
<div class="widget_button_area">
|
||||
<input type="submit" value="{$lang->cmd_insert}" class="widget_button" />
|
||||
<input type="button" onclick="self.close()" value="{$lang->cmd_close}" class="widget_button" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
@ -72,5 +72,5 @@
|
|||
</form>
|
||||
|
||||
<script type="text/javascript">
|
||||
xAddEventListener(window, "load", doFillPluginVars);
|
||||
xAddEventListener(window, "load", doFillWidgetVars);
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue