Revert "Revert "Rebuild nov 3 16""

This reverts commit c8ca24a000.
This commit is contained in:
Rachel Fenichel
2016-11-11 17:05:13 -08:00
parent d04d8280c7
commit b5822e2925
118 changed files with 1332 additions and 646 deletions
+5 -5
View File
@@ -314,7 +314,7 @@ Code.renderContent = function() {
var code = Blockly.JavaScript.workspaceToCode(Code.workspace);
content.textContent = code;
if (typeof prettyPrintOne == 'function') {
code = content.innerHTML;
code = content.textContent;
code = prettyPrintOne(code, 'js');
content.innerHTML = code;
}
@@ -322,7 +322,7 @@ Code.renderContent = function() {
code = Blockly.Python.workspaceToCode(Code.workspace);
content.textContent = code;
if (typeof prettyPrintOne == 'function') {
code = content.innerHTML;
code = content.textContent;
code = prettyPrintOne(code, 'py');
content.innerHTML = code;
}
@@ -330,7 +330,7 @@ Code.renderContent = function() {
code = Blockly.PHP.workspaceToCode(Code.workspace);
content.textContent = code;
if (typeof prettyPrintOne == 'function') {
code = content.innerHTML;
code = content.textContent;
code = prettyPrintOne(code, 'php');
content.innerHTML = code;
}
@@ -338,7 +338,7 @@ Code.renderContent = function() {
code = Blockly.Dart.workspaceToCode(Code.workspace);
content.textContent = code;
if (typeof prettyPrintOne == 'function') {
code = content.innerHTML;
code = content.textContent;
code = prettyPrintOne(code, 'dart');
content.innerHTML = code;
}
@@ -346,7 +346,7 @@ Code.renderContent = function() {
code = Blockly.Lua.workspaceToCode(Code.workspace);
content.textContent = code;
if (typeof prettyPrintOne == 'function') {
code = content.innerHTML;
code = content.textContent;
code = prettyPrintOne(code, 'lua');
content.innerHTML = code;
}