Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
c15abfce
Commit
c15abfce
authored
Jul 22, 2015
by
chriseth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove memory file, remove theme.
parent
69c84cb9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
12 deletions
+2
-12
index.html
index.html
+2
-11
theme-monokai.js
libs/theme-monokai.js
+0
-1
No files found.
index.html
View file @
c15abfce
...
@@ -156,24 +156,16 @@ enable the debug console (Ctrl+Shift+i) and reload.
...
@@ -156,24 +156,16 @@ enable the debug console (Ctrl+Shift+i) and reload.
<script>
<script>
// ----------------- editor ----------------------
// ----------------- editor ----------------------
var
editor
=
ace
.
edit
(
"input"
);
var
editor
=
ace
.
edit
(
"input"
);
editor
.
setTheme
(
"ace/theme/monokai"
);
editor
.
getSession
().
setMode
(
"ace/mode/javascript"
);
editor
.
getSession
().
setMode
(
"ace/mode/javascript"
);
editor
.
getSession
().
setTabSize
(
4
);
editor
.
getSession
().
setTabSize
(
4
);
editor
.
getSession
().
setUseSoftTabs
(
true
);
editor
.
getSession
().
setUseSoftTabs
(
true
);
// ----------------- compiler ----------------------
// ----------------- compiler ----------------------
var
compileJSON
=
Module
.
cwrap
(
"compileJSON"
,
"string"
,
[
"string"
,
"number"
]);
var
compileJSON
=
Module
.
cwrap
(
"compileJSON"
,
"string"
,
[
"string"
,
"number"
]);
var
ready
=
false
;
$
(
'#version'
).
text
(
Module
.
cwrap
(
"version"
,
"string"
,
[])());
Module
[
'onRuntimeInitialized'
]
=
function
()
{
ready
=
true
;
$
(
'#version'
).
text
(
Module
.
cwrap
(
"version"
,
"string"
,
[])());
onChange
();
};
var
previousInput
=
''
;
var
previousInput
=
''
;
var
compile
=
function
()
{
var
compile
=
function
()
{
if
(
!
ready
)
return
;
var
input
=
editor
.
getValue
();
var
input
=
editor
.
getValue
();
var
optimize
=
document
.
querySelector
(
'#optimize'
).
checked
;
var
optimize
=
document
.
querySelector
(
'#optimize'
).
checked
;
try
{
try
{
...
@@ -189,8 +181,6 @@ var compile = function() {
...
@@ -189,8 +181,6 @@ var compile = function() {
}
}
var
compileTimeout
=
null
;
var
compileTimeout
=
null
;
var
onChange
=
function
()
{
var
onChange
=
function
()
{
if
(
!
ready
)
return
;
var
input
=
editor
.
getValue
();
var
input
=
editor
.
getValue
();
if
(
input
==
previousInput
)
if
(
input
==
previousInput
)
return
;
return
;
...
@@ -198,6 +188,7 @@ var onChange = function() {
...
@@ -198,6 +188,7 @@ var onChange = function() {
if
(
compileTimeout
)
window
.
clearTimeout
(
compileTimeout
);
if
(
compileTimeout
)
window
.
clearTimeout
(
compileTimeout
);
compileTimeout
=
window
.
setTimeout
(
compile
,
300
);
compileTimeout
=
window
.
setTimeout
(
compile
,
300
);
};
};
onChange
();
editor
.
getSession
().
on
(
'change'
,
onChange
);
editor
.
getSession
().
on
(
'change'
,
onChange
);
document
.
querySelector
(
'#optimize'
).
addEventListener
(
'change'
,
compile
);
document
.
querySelector
(
'#optimize'
).
addEventListener
(
'change'
,
compile
);
...
...
libs/theme-monokai.js
deleted
100644 → 0
View file @
69c84cb9
define
(
"ace/theme/monokai"
,[
"require"
,
"exports"
,
"module"
,
"ace/lib/dom"
],
function
(
e
,
t
,
n
){
t
.
isDark
=!
0
,
t
.
cssClass
=
"ace-monokai"
,
t
.
cssText
=
".ace-monokai .ace_gutter {background: #2F3129;color: #8F908A}.ace-monokai .ace_print-margin {width: 1px;background: #555651}.ace-monokai {background-color: #272822;color: #F8F8F2}.ace-monokai .ace_cursor {color: #F8F8F0}.ace-monokai .ace_marker-layer .ace_selection {background: #49483E}.ace-monokai.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px #272822;}.ace-monokai .ace_marker-layer .ace_step {background: rgb(102, 82, 0)}.ace-monokai .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid #49483E}.ace-monokai .ace_marker-layer .ace_active-line {background: #202020}.ace-monokai .ace_gutter-active-line {background-color: #272727}.ace-monokai .ace_marker-layer .ace_selected-word {border: 1px solid #49483E}.ace-monokai .ace_invisible {color: #52524d}.ace-monokai .ace_entity.ace_name.ace_tag,.ace-monokai .ace_keyword,.ace-monokai .ace_meta.ace_tag,.ace-monokai .ace_storage {color: #F92672}.ace-monokai .ace_punctuation,.ace-monokai .ace_punctuation.ace_tag {color: #fff}.ace-monokai .ace_constant.ace_character,.ace-monokai .ace_constant.ace_language,.ace-monokai .ace_constant.ace_numeric,.ace-monokai .ace_constant.ace_other {color: #AE81FF}.ace-monokai .ace_invalid {color: #F8F8F0;background-color: #F92672}.ace-monokai .ace_invalid.ace_deprecated {color: #F8F8F0;background-color: #AE81FF}.ace-monokai .ace_support.ace_constant,.ace-monokai .ace_support.ace_function {color: #66D9EF}.ace-monokai .ace_fold {background-color: #A6E22E;border-color: #F8F8F2}.ace-monokai .ace_storage.ace_type,.ace-monokai .ace_support.ace_class,.ace-monokai .ace_support.ace_type {font-style: italic;color: #66D9EF}.ace-monokai .ace_entity.ace_name.ace_function,.ace-monokai .ace_entity.ace_other,.ace-monokai .ace_entity.ace_other.ace_attribute-name,.ace-monokai .ace_variable {color: #A6E22E}.ace-monokai .ace_variable.ace_parameter {font-style: italic;color: #FD971F}.ace-monokai .ace_string {color: #E6DB74}.ace-monokai .ace_comment {color: #75715E}.ace-monokai .ace_indent-guide {background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWPQ0FD0ZXBzd/wPAAjVAoxeSgNeAAAAAElFTkSuQmCC) right repeat-y}"
;
var
r
=
e
(
"../lib/dom"
);
r
.
importCssString
(
t
.
cssText
,
t
.
cssClass
)})
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment