lib/template/js/main.js in browser_app_base-0.0.7 vs lib/template/js/main.js in browser_app_base-0.0.8
- old
+ new
@@ -99,11 +99,11 @@
//jQuery(this).autocomplete("search", "");
$(this).keydown();
},
source: function (req, resp) {
$.ajax({
- url: "http://localhost:55974/search?path=" + $("#" + id).val() + "&kind=" + file_kind,
+ url: "http://localhost:53492/search?path=" + $("#" + id).val() + "&kind=" + file_kind,
type: "GET",
cache: false,
dataType: "json",
data: {
param1: req.term
@@ -125,11 +125,12 @@
function select_file_dialog(search_id, file_kind, dialog_id, select_file, file_name) {
$("#" + select_file).click(function () {
autocomp(search_id, file_kind);
$(".ui-autocomplete").css("z-index", 1000);
- $("#" + search_id).val("/");
+ console.log("name=" + $("#" + file_name).val());
+ $("#" + search_id).val($("#" + file_name).val());
$("#" + dialog_id).dialog({
modal: true
, show: "slide" //表示時のアニメーション
, hide: "explode" //閉じた時のアニメーション
, title: "Select File" //ダイアログのタイトル
@@ -274,10 +275,10 @@
}
// 起動時の処理
$(document).ready(function () {
// サーバに接続
- server_connect("ws://localhost:55974/wsserver")
+ server_connect("ws://localhost:53492/wsserver")
// ウインドウサイズ
var width = 800;
var height = 600;
$(window).resize(function () {
$(".outarea").height($(window).height() - 300);