diff options
| author | hallgren <hallgren@chalmers.se> | 2011-05-07 17:36:49 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2011-05-07 17:36:49 +0000 |
| commit | 55a20c6d05cc79a6bb453b1a02e74eb16a8712d1 (patch) | |
| tree | 0e4f1baa7109d41910eafe7f0f64956f3539593a /src | |
| parent | 11af6241222610b104bd03efb6cd2f263e724167 (diff) | |
gfse: fix a problem in browsers where "class" is a reserved keyword
Diffstat (limited to 'src')
| -rw-r--r-- | src/editor/simple/editor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editor/simple/editor.js b/src/editor/simple/editor.js index f6e47fc5d..30e989940 100644 --- a/src/editor/simple/editor.js +++ b/src/editor/simple/editor.js @@ -168,7 +168,7 @@ function add_concrete(g,el) { :"scratch"; file.appendChild(p(text("You are about to create a new concrete syntax by starting from "+from+"."))); file.appendChild(p(text("Pick a language for the new concrete syntax:"))); - file.appendChild(node("ul",{class:"languages"},list)); + file.appendChild(node("ul",{"class":"languages"},list)); } function new_concrete(code) { |
