Skip to content

Commit c2b6e5b

Browse files
author
Herbert Vojčík
committed
Using 'jQuery' instead of '$' global.
1 parent 0d8a080 commit c2b6e5b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

presentation/src/Presentation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3874,12 +3874,12 @@ selector: "codeSnippet",
38743874
protocol: 'accessing',
38753875
fn: function (){
38763876
var self=this;
3877-
return "var counter = window.smalltalk.Counter._new();\x0acounter._appendToJQuery_($('#jsToSmalltalk'));";
3877+
return "var counter = window.smalltalk.Counter._new();\x0acounter._appendToJQuery_(jQuery('#jsToSmalltalk'));";
38783878

38793879
},
38803880
//>>excludeStart("ide", pragmas.excludeIdeData);
38813881
args: [],
3882-
source: "codeSnippet\x0a\x09^\x0a'var counter = window.smalltalk.Counter._new();\x0acounter._appendToJQuery_($(''#jsToSmalltalk''));'.",
3882+
source: "codeSnippet\x0a\x09^\x0a'var counter = window.smalltalk.Counter._new();\x0acounter._appendToJQuery_(jQuery(''#jsToSmalltalk''));'.",
38833883
referencedClasses: [],
38843884
//>>excludeEnd("ide");
38853885
messageSends: []

presentation/src/Presentation.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1756,7 +1756,7 @@ FOSDEMSlide subclass: #FOSDEMJSToSmalltalk
17561756
codeSnippet
17571757
^
17581758
'var counter = window.smalltalk.Counter._new();
1759-
counter._appendToJQuery_($(''#jsToSmalltalk''));'.
1759+
counter._appendToJQuery_(jQuery(''#jsToSmalltalk''));'.
17601760
!
17611761

17621762
cssClass

0 commit comments

Comments
 (0)