mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-14 13:41:05 +00:00
fix
This commit is contained in:
parent
8cba75d0ff
commit
b99dd9fc12
4
app.hta
4
app.hta
|
@ -59,7 +59,9 @@
|
||||||
<link type="text/css" rel="stylesheet" href="app/style.css" />
|
<link type="text/css" rel="stylesheet" href="app/style.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app">
|
||||||
|
<welsonjs-view></welsonjs-view>
|
||||||
|
</div>
|
||||||
<script src="app.js" type="text/javascript" charset="utf-8"></script>
|
<script src="app.js" type="text/javascript" charset="utf-8"></script>
|
||||||
<script type="text/javascript">//<!--<![CDATA[
|
<script type="text/javascript">//<!--<![CDATA[
|
||||||
init_window("webloader", [WELSONJS_WINDOW.commandLine], 800, 600);
|
init_window("webloader", [WELSONJS_WINDOW.commandLine], 800, 600);
|
||||||
|
|
|
@ -1,5 +1,13 @@
|
||||||
var FILE = require("lib/file");
|
var FILE = require("lib/file");
|
||||||
|
|
||||||
|
Vue.component("welsonjs-view", {
|
||||||
|
template: "<p>hello world</p>"
|
||||||
|
});
|
||||||
|
|
||||||
|
new Vue({el: "#app"});
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$(".show-logged").css("display", "none");
|
$(".show-logged").css("display", "none");
|
||||||
|
|
||||||
|
@ -73,3 +81,4 @@ $(document).ready(function() {
|
||||||
console.log("로그아웃 되었습니다.");
|
console.log("로그아웃 되었습니다.");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
*/
|
|
@ -71,7 +71,7 @@ exports.enableMovableWindow = function() {
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
exports.main = function(args) {
|
exports.main = function(args) {
|
||||||
// make will display contents
|
// make will display contents
|
||||||
OldBrowser.setContent(FILE.readFile("app\\index.html", "utf-8"));
|
//OldBrowser.setContent(FILE.readFile("app\\index.html", "utf-8"));
|
||||||
OldBrowser.addStylesheet("app/assets/css/jquery-ui-1.21.1.min.css");
|
OldBrowser.addStylesheet("app/assets/css/jquery-ui-1.21.1.min.css");
|
||||||
OldBrowser.addStylesheet("app/assets/css/jquery.toast-1.3.2.min.css");
|
OldBrowser.addStylesheet("app/assets/css/jquery.toast-1.3.2.min.css");
|
||||||
OldBrowser.addStylesheet("app/assets/css/style.css");
|
OldBrowser.addStylesheet("app/assets/css/style.css");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user