Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
fustyles authored Sep 29, 2023
1 parent 4103f00 commit a5b3f1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion SpBlocklyJS/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<meta charset="utf-8">
<title>SpBlocklyJS</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/icon.css" />
<link rel="stylesheet" href="css/custom.css" />
<link rel="stylesheet" href="css/jquery-ui.css">
Expand Down
4 changes: 3 additions & 1 deletion SpBlocklyJS/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ document.addEventListener('DOMContentLoaded', function() {

function getScript() {
var script = "<script src='GameElements_20190131/gameelements.js'></script>";

script += "<link rel='stylesheet' href='css/icon.css' />";

var xml = Blockly.Xml.workspaceToDom(Blockly.getMainWorkspace(), true);
xml = Blockly.Xml.domToPrettyText(xml);

Expand Down Expand Up @@ -188,6 +189,7 @@ document.addEventListener('DOMContentLoaded', function() {

function getScriptRemote() {
var script = "<script src='https://fustyles.github.io/webduino/SpBlocklyJS/GameElements_20190131/gameelements.js'></script>";
script += "<link rel='stylesheet' href='https://fustyles.github.io/webduino/SpBlocklyJS/css/icon_custom.css' />";

var xml = Blockly.Xml.workspaceToDom(Blockly.getMainWorkspace(), true);
xml = Blockly.Xml.domToPrettyText(xml);
Expand Down

0 comments on commit a5b3f1c

Please sign in to comment.