localizing use of the jQuery variable, avoid collision with $

This commit is contained in:
Danny Yoo 2013-03-29 17:38:48 -06:00
parent 0f35faa159
commit b2ac271d9c
8 changed files with 24 additions and 14 deletions

View File

@ -482,4 +482,4 @@
exports.toDomNode = toDomNode; exports.toDomNode = toDomNode;
exports.escapeString = escapeString; exports.escapeString = escapeString;
}(this.plt.baselib, $)); }(this.plt.baselib, jQuery));

View File

@ -3,7 +3,7 @@
// list structures (pairs, empty) // list structures (pairs, empty)
(function (baselib) { (function (baselib, $) {
'use strict'; 'use strict';
var exports = {}; var exports = {};
baselib.lists = exports; baselib.lists = exports;
@ -347,4 +347,4 @@
exports.listToArray = listToArray; exports.listToArray = listToArray;
exports.arrayToList = arrayToList; exports.arrayToList = arrayToList;
}(this.plt.baselib)); }(this.plt.baselib, jQuery));

View File

@ -147,4 +147,4 @@
exports.StandardInputPort = StandardInputPort; exports.StandardInputPort = StandardInputPort;
}(this.plt.baselib, $)); }(this.plt.baselib, jQuery));

View File

@ -308,4 +308,4 @@
exports.isStruct = isStruct; exports.isStruct = isStruct;
exports.isStructType = isStructType; exports.isStructType = isStructType;
exports.isStructTypeProperty = isStructTypeProperty; exports.isStructTypeProperty = isStructTypeProperty;
}(this.plt.baselib, $)); }(this.plt.baselib, jQuery));

View File

@ -1,6 +1,6 @@
/*jslint devel: false, browser: true, unparam: true, vars: true, plusplus: true, maxerr: 500, indent: 4 */ /*jslint devel: false, browser: true, unparam: true, vars: true, plusplus: true, maxerr: 500, indent: 4 */
// Structure types // Structure types
(function (baselib) { (function (baselib,$) {
"use strict"; "use strict";
var exports = {}; var exports = {};
baselib.symbols = exports; baselib.symbols = exports;
@ -87,4 +87,4 @@
exports.makeSymbol = makeSymbol; exports.makeSymbol = makeSymbol;
exports.isSymbol = isSymbol; exports.isSymbol = isSymbol;
}(this.plt.baselib)); }(this.plt.baselib, jQuery));

View File

@ -6,7 +6,7 @@
// All of the values here are namespaced under "plt.runtime". // All of the values here are namespaced under "plt.runtime".
/*global $*/ /*global $*/
(function(plt) { (function(plt, $) {
'use strict'; 'use strict';
var runtime = {}; var runtime = {};
plt.runtime = runtime; plt.runtime = runtime;
@ -1417,4 +1417,4 @@
exports['makeRandomNonce'] = makeRandomNonce; exports['makeRandomNonce'] = makeRandomNonce;
}(this.plt)); }(this.plt, jQuery));

View File

@ -60,9 +60,13 @@ jQuery(document).ready(function() {
if (e.which == 13 && !prompt.attr('disabled')) { if (e.which == 13 && !prompt.attr('disabled')) {
onExpressionEntered(); onExpressionEntered();
}}); }});
var afterReplSetup = function() {
var afterReplSetup = function(theRepl) {
repl = theRepl;
prompt.val(''); prompt.val('');
prompt.removeAttr('disabled'); prompt.removeAttr('disabled');
}; };
var repl = new plt.runtime.Repl({ write: write }, afterReplSetup);
var repl;
plt.runtime.makeRepl({ write: write }, afterReplSetup);
}); });

View File

@ -4,6 +4,13 @@
// options: { compilerUrl: string,, // options: { compilerUrl: string,,
// write: (dom-node -> void) // write: (dom-node -> void)
// language: string } // language: string }
// makeRepl: options (Repl -> void) -> void
var makeRepl = function(options, afterSetup) {
new Repl(options, afterSetup);
return;
};
var Repl = function(options, afterSetup) { var Repl = function(options, afterSetup) {
this.M = plt.runtime.currentMachine; this.M = plt.runtime.currentMachine;
this.compilerUrl = options.compilerUrl || 'rpc.html'; this.compilerUrl = options.compilerUrl || 'rpc.html';
@ -80,7 +87,6 @@
var setupMachine = function(that, afterSetup) { var setupMachine = function(that, afterSetup) {
var M = that.M; var M = that.M;
M.reset(); M.reset();
// We configure the machine's output to send it to the // We configure the machine's output to send it to the
// "output" DOM node. // "output" DOM node.
M.params.currentDisplayer = function(MACHINE, domNode) { M.params.currentDisplayer = function(MACHINE, domNode) {
@ -99,7 +105,7 @@
// FIXME: this should be getting the namespace, // FIXME: this should be getting the namespace,
// not the export dictionary... // not the export dictionary...
M.params.currentNamespace = semanticsModule.getExports(); M.params.currentNamespace = semanticsModule.getExports();
afterSetup(); afterSetup(that);
}, },
function(err) { function(err) {
// Nothing should work if we can't get this to work. // Nothing should work if we can't get this to work.
@ -189,5 +195,5 @@
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
// Expose to the outside world as plt.runtime.Repl. // Expose to the outside world as plt.runtime.Repl.
plt.runtime.Repl = Repl; plt.runtime.makeRepl = makeRepl;
}()); }());