mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
wip
This commit is contained in:
@@ -1536,7 +1536,7 @@ LivedataTest.Connection = Connection;
|
||||
DDP.connect = function (url, options) {
|
||||
var ret = new Connection(url, options);
|
||||
allConnections.push(ret); // hack. see below.
|
||||
|
||||
debugger;
|
||||
return ret;
|
||||
};
|
||||
|
||||
|
||||
@@ -1777,9 +1777,9 @@ exports.bundle = function (options) {
|
||||
// Server
|
||||
var browserClient = targets["client.browser"];
|
||||
if (browserClient) {
|
||||
var server = makeServerTarget(app, browserClient);
|
||||
var server = options.cachedServerTarget || makeServerTarget(app, client);
|
||||
server.clientTarget = client;
|
||||
var server = options.cachedServerTarget ||
|
||||
makeServerTarget(app, browserClient);
|
||||
server.clientTarget = browserClient;
|
||||
targets.server = server;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
|
||||
<script type="text/javascript">
|
||||
__meteor_runtime_config__ = {
|
||||
'meteorRelease':'0.8.2',
|
||||
'ROOT_URL':'http://localhost:3000',
|
||||
'meteorRelease':'none',
|
||||
'ROOT_URL':'http://localhost:3000/',
|
||||
'ROOT_URL_PATH_PREFIX':'',
|
||||
'DDP_DEFAULT_CONNECTION_URL':'http://localhost:3000'
|
||||
};
|
||||
@@ -21,7 +21,6 @@
|
||||
|
||||
{{{head}}}
|
||||
<script type="text/javascript">
|
||||
Meteor.disconnect();
|
||||
UI.body.INSTANTIATED = true;
|
||||
|
||||
if (typeof Package === 'undefined' ||
|
||||
|
||||
Reference in New Issue
Block a user