Removed the jQuery library from being shipped with the source (instead accessing it remotely). Download it separately if wanting to test the webclient features without an internet connection. This was due to it massively shifting the analysis of the Evennia code (we suddenly consist of almost 50% javascript code just due to the jQuery inclusion).
This commit is contained in:
parent
6a13d07c55
commit
803051a594
3 changed files with 5 additions and 7183 deletions
|
|
@ -33,7 +33,6 @@ contain the 'mode' of the request to be handled by the protocol:
|
|||
*/
|
||||
|
||||
// jQuery must be imported by the calling html page before this script
|
||||
// (it comes with Evennia, in media/javascript/jquery-<version>.js)
|
||||
// There are plenty of help on using the jQuery library on http://jquery.com/
|
||||
|
||||
// Server communications
|
||||
|
|
|
|||
7179
src/web/media/javascript/jquery-1.4.4.js
vendored
7179
src/web/media/javascript/jquery-1.4.4.js
vendored
File diff suppressed because it is too large
Load diff
|
|
@ -8,9 +8,11 @@
|
|||
<!--CSS style sheet -->
|
||||
<link rel='stylesheet' type="text/css" media="screen" href="/media/css/webclient.css">
|
||||
|
||||
<!-- Importing the jQuery javascript library -->
|
||||
<!--script src="http://code.jquery.com/jquery-1.4.4.js" type="text/javascript" charset="utf-8"></script-->
|
||||
<script src="/media/javascript/jquery-1.4.4.js" type="text/javascript" charset="utf-8"></script>
|
||||
<!-- Importing the online jQuery javascript library -->
|
||||
<script src="http://code.jquery.com/jquery-1.4.4.js" type="text/javascript" charset="utf-8"></script>
|
||||
|
||||
<!--for offline testing, download the jquery library from jquery.com-->
|
||||
<!--script src="/media/javascript/jquery-1.4.4.js" type="text/javascript" charset="utf-8"></script-->
|
||||
|
||||
<!-- Importing the Evennia ajax webclient component (requires jQuery) -->
|
||||
<script src="/media/javascript/evennia_webclient.js" type="text/javascript" charset="utf-8"></script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue