lib/template/js/main.js in browser_app_base-0.0.6 vs lib/template/js/main.js in browser_app_base-0.0.7

- old
+ new

@@ -3,10 +3,31 @@ var $ws = null; var $auto_scroll = true; var dialog = null; function open_dialog(msg) { + console.log("msg=" + msg); + $("#msg_text").html(msg); + $("#msg_dialog").dialog({ + modal: true + , show: "slide" //表示時のアニメーション + , hide: "slide" //閉じた時のアニメーション + , title: "Message" //ダイアログのタイトル + , width: 400 //ダイアログの横幅 + , height: 200 //ダイアログの高さ + , resizable: true //リサイズ可 + , closeOnEscape: false //[ESC]キーで閉じられなくする + , draggable: true //ダイアログの移動を可に + , buttons: { + "OK": function () { //Cancelボタン + $(this).dialog("close"); + } + } + }); +} + +function open_dialog_org(msg) { var top = window.screenTop + 10; var left = window.screenLeft + 10; if (dialog != null) { dialog.close(); } @@ -78,11 +99,11 @@ //jQuery(this).autocomplete("search", ""); $(this).keydown(); }, source: function (req, resp) { $.ajax({ - url: "http://localhost:54068/search?path=" + $("#" + id).val() + "&kind=" + file_kind, + url: "http://localhost:55974/search?path=" + $("#" + id).val() + "&kind=" + file_kind, type: "GET", cache: false, dataType: "json", data: { param1: req.term @@ -253,22 +274,22 @@ } // 起動時の処理 $(document).ready(function () { // サーバに接続 - server_connect("ws://localhost:54068/wsserver") + server_connect("ws://localhost:55974/wsserver") // ウインドウサイズ var width = 800; var height = 600; - $(window).resize(function() { - $(".outarea").height( $(window).height() - 250 ); + $(window).resize(function () { + $(".outarea").height($(window).height() - 300); }); // ウインドウの位置 $(function () { window.resizeTo(width, height); window.moveTo((window.screen.width / 2) - (width / 2), (screen.height / 2) - (height / 2)); //window.moveTo(0,0); - $(".outarea").height( $(window).height() - 250 ); + $(".outarea").height($(window).height() - 300); }); $('.outarea').scroll(function () { var h = $('.outarea').get(0).scrollHeight - $('.outarea').innerHeight(); //console.log("scrollEnd=" + Math.abs($('.outarea').scrollTop() - h));