Skip to content

Commit 3f37e68

Browse files
committed
deploy: 0b2f639
1 parent d6297a3 commit 3f37e68

File tree

29 files changed

+64
-262
lines changed

29 files changed

+64
-262
lines changed

appConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ window.AppConfig = {
2121
"extension_url": "https://brackets-archive.github.io/brackets-extensions/extensions/",
2222
"extension_store_url": "https://store.core.ai/src/",
2323
"linting.enabled_by_default": true,
24-
"build_timestamp": "2023-01-13T16:35:27.919Z",
24+
"build_timestamp": "2023-01-13T17:44:20.766Z",
2525
"googleAnalyticsID": "G-P4HJFPDB76",
2626
"mixPanelID": "49c4d164b592be2350fc7af06a259bf3",
2727
"coreAnalyticsID": "phoenix",
@@ -31,7 +31,7 @@ window.AppConfig = {
3131
"bugsnagEnv": "development"
3232
},
3333
"name": "Phoenix",
34-
"version": "3.1.2-19089",
34+
"version": "3.1.2-19091",
3535
"apiVersion": "3.1.2",
3636
"homepage": "https://core.ai",
3737
"issues": {

assets/default-project/en.zip

-800 Bytes
Binary file not shown.

assets/default-project/en/index.html

Lines changed: 7 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,10 @@
33
<head>
44
<title>Phoenix editor</title>
55
<link rel="stylesheet" href="styles.css" />
6-
<link
7-
href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,500,600,800"
8-
rel="stylesheet" />
9-
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
10-
<script src="video.js"></script>
11-
<script src="https://www.youtube.com/iframe_api"></script>
6+
<script src="script.js"></script>
127
</head>
138

14-
<body>
9+
<body onload="onPageLoaded()">
1510
<img id="starsLeft" alt="stars" src="images/stars-left.svg" />
1611
<div id="mainDiv">
1712
<img id="logo" alt="logo" src="images/phoenix-logo.svg" />
@@ -20,36 +15,11 @@ <h1>Phoenix</h1>
2015
<span>Modern, Open-source, IDE For The Web <br /></span><br />
2116
</div>
2217
<div class="video-slider">
23-
<!-- SLIDE 1 -->
24-
<div class="slide">
25-
Live HTML preview
26-
<iframe
27-
title="Live HTML Preview"
28-
allow="fullscreen;"
29-
class="video"
30-
src="https://www.youtube.com/embed/Jkg3nAZ6vF8?ecver=2&enablejsapi=1"></iframe>
31-
</div>
32-
<!-- SLIDE 2 -->
33-
<div class="slide">
34-
Share and publish your website on the web
35-
<iframe
36-
title="Share and publish your website on the web"
37-
allow="fullscreen;"
38-
class="video"
39-
src="https://www.youtube.com/embed/dJTZ2iduagg?ecver=2&enablejsapi=1"></iframe>
40-
</div>
41-
<!-- SLIDE 2 -->
42-
<div class="slide">
43-
Beautify Code
44-
<iframe
45-
title="Beautify HTML, JS, CSS, JSON Code and many more"
46-
allow="fullscreen;"
47-
class="video"
48-
src="https://www.youtube.com/embed/DMMPfIuUGGs?ecver=2&enablejsapi=1"></iframe>
49-
</div>
50-
<!-- END OF SLIDES -->
51-
<div class="slide-arrow left"></div>
52-
<div class="slide-arrow right"></div>
18+
<iframe
19+
title="Live HTML Preview"
20+
allow="fullscreen;"
21+
class="video"
22+
src="https://www.youtube.com/embed/Jkg3nAZ6vF8?ecver=2&enablejsapi=1"></iframe>
5323
</div>
5424
</div>
5525
<img id="cloudLeftTop" alt="cloud" src="images/vector-top-left.png" />
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
function onPageLoaded() {
2+
// Write your javascript code here
3+
console.log("page loaded");
4+
}

assets/default-project/en/styles.css

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ body {
44
display: flex;
55
justify-content: center;
66
align-items: center;
7-
font-family: "Montserrat";
87
}
98

109
img {
@@ -159,57 +158,14 @@ h1 {
159158
}
160159
}
161160

162-
/* Additionnal styles */
163161
.video-slider {
164162
width: 100%;
165163
height: 15em;
166164
position: relative;
167165
overflow: hidden;
168166
}
169-
.slide {
170-
position: absolute;
171-
top: 0;
172-
left: 100%;
173-
height: 100%;
174-
width: 100%;
175-
text-align: center;
176-
overflow: hidden;
177-
}
178-
.slide:first-child {
179-
left: 0;
180-
}
181167
.video {
182168
height: 100%;
183169
width: 100%;
184170
border: 0;
185171
}
186-
.slide-arrow {
187-
position: absolute;
188-
top: 0;
189-
left: 0;
190-
height: 45%;
191-
width: 15%;
192-
cursor: pointer;
193-
opacity: 100%;
194-
}
195-
.slide-arrow:hover {
196-
opacity: 1;
197-
}
198-
.slide-arrow:after {
199-
content: "\003c";
200-
text-align: center;
201-
display: block;
202-
height: 10%;
203-
width: 100%;
204-
position: absolute;
205-
bottom: 0;
206-
left: 0;
207-
font-size: 3em;
208-
}
209-
.slide-arrow.right:after {
210-
content: "\003e";
211-
}
212-
.slide-arrow.right {
213-
left: auto;
214-
right: 0;
215-
}

assets/default-project/en/video.js

Lines changed: 0 additions & 33 deletions
This file was deleted.

assets/sample-projects/HTML5.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

assets/sample-projects/explore.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)