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
a589650c
Unverified
Commit
a589650c
authored
Feb 12, 2018
by
yann300
Committed by
GitHub
Feb 12, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #878 from Zaccc123/master
set autoCompile to false by default
parents
909e36f0
b340c72d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
compile-tab.js
src/app/tabs/compile-tab.js
+1
-1
init.js
test-browser/helpers/init.js
+4
-0
No files found.
src/app/tabs/compile-tab.js
View file @
a589650c
...
...
@@ -62,7 +62,7 @@ function compileTab (container, appAPI, appEvents, opts) {
// ----------------- autoCompile -----------------
var
autoCompileInput
=
compileContainer
.
querySelector
(
'#autoCompile'
)
var
autoCompile
=
tru
e
var
autoCompile
=
fals
e
if
(
appAPI
.
config
.
exists
(
'autoCompile'
))
{
autoCompile
=
appAPI
.
config
.
get
(
'autoCompile'
)
}
...
...
test-browser/helpers/init.js
View file @
a589650c
...
...
@@ -3,5 +3,9 @@ module.exports = function (browser, callback) {
.
url
(
'http://127.0.0.1:8080/#version=builtin'
)
.
injectScript
(
'test-browser/helpers/applytestmode.js'
,
function
()
{
browser
.
resizeWindow
(
2560
,
1440
,
callback
)
.
click
(
'#autoCompile'
)
.
perform
(
function
()
{
callback
()
})
})
}
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