SR Technology WTK Repo
Check-in [95443d0296]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:include our own copy of jquery for working offline
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 95443d02963c3395e0381092c9c33ab600808eeb
User & Date: stever 2013-01-06 17:51:48.119
Context
2013-01-06
17:53
copy of jquery-min.js for offline use check-in: 07e37d1b56 user: stever tags: trunk
17:51
include our own copy of jquery for working offline check-in: 95443d0296 user: stever tags: trunk
17:50
modify server to take hostname and port on the command line check-in: 73815b5713 user: stever tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to lib/wtkcoreapp.html.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
%%%FAVICON%%%

<style type="text/css">
 * {outline:none; border: 2; appearance: none; -moz-appearance: none;border-color: black; border-radius: 5px;}
 ::-moz-focus-inner { border: 0; outline: none;-moz-apperance:none;}
</style>

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js" type="text/javascript"></script>
<script src="widgets/wtk.js"></script>
</head>
<body>
<div id=obj0></div>
<script>
$(document).ready(function() {wtk.init(%%%SESSIONID%%%)});
</script>









|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
%%%FAVICON%%%

<style type="text/css">
 * {outline:none; border: 2; appearance: none; -moz-appearance: none;border-color: black; border-radius: 5px;}
 ::-moz-focus-inner { border: 0; outline: none;-moz-apperance:none;}
</style>

<script src="lib/jquery.min.js"></script>
<script src="widgets/wtk.js"></script>
</head>
<body>
<div id=obj0></div>
<script>
$(document).ready(function() {wtk.init(%%%SESSIONID%%%)});
</script>