Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
lolgzs committed Mar 12, 2012
2 parents 1038957 + 10ee59d commit 0234566
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions css/amber.css
Expand Up @@ -225,17 +225,17 @@ body.jtalkBody {
.jtalkTool textarea,
.jtalkTool input {
border: 0 none;
font-family: Arial, Helvetica, sans;
font-family: "DejaVu Sans", Helvetica, sans;
line-height: 1.3em;
font-size: 12px;
font-size: 11px;
position: relative;
padding: 0;
}

.jtalkTool .CodeMirror {
border: 0 none;
font-family: Arial, Helvetica, sans;
font-size: 12px;
font-family: "DejaVu Sans", Helvetica, sans;
font-size: 11px;
line-height: 1.3em;
height: 100%;
background: white;
Expand All @@ -246,7 +246,7 @@ body.jtalkBody {
}

.talkTool .CodeMirror-scroll pre {
font-family: Arial, Helvetica, sans;
font-family: "DejaVu Sans", Helvetica, sans;
}

.jtalkTool .jt_clear {
Expand Down
2 changes: 1 addition & 1 deletion js/amber.js
Expand Up @@ -12,14 +12,14 @@ amber = (function() {
var scripts = document.getElementsByTagName("script");
var src = scripts[ scripts.length - 1 ].src;
var home = src.split("/").slice(0, -2).join("/") + "/";
var nocache = '?' + (new Date()).getTime();

var debug;
var deploy;

var spec;
var jsToLoad = [];
var loadJS;
var nocache = '';

that.toggleIDE = function() {
if ($('#jtalk').length == 0) {
Expand Down
3 changes: 2 additions & 1 deletion js/init.js
@@ -1,5 +1,6 @@
smalltalk.init(smalltalk.Object);
smalltalk.classes()._do_(function(each) {each._initialize()});
smalltalk.classes()._do_(function(each) {
each._initialize()});

/* Similar to jQuery(document).ready() */

Expand Down

0 comments on commit 0234566

Please sign in to comment.