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
66acb7a0
Commit
66acb7a0
authored
Jun 06, 2016
by
Alex Beregszaszi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Standard: mark globals
parent
e382840f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
0 deletions
+14
-0
background.js
background.js
+2
-0
app.js
src/app.js
+2
-0
editor.js
src/app/editor.js
+2
-0
execution-context.js
src/app/execution-context.js
+2
-0
gist-handler.js
src/app/gist-handler.js
+2
-0
storage-handler.js
src/app/storage-handler.js
+2
-0
universal-dapp.js
src/universal-dapp.js
+2
-0
No files found.
background.js
View file @
66acb7a0
/* global chrome */
chrome
.
browserAction
.
onClicked
.
addListener
(
function
(
tab
)
{
chrome
.
storage
.
sync
.
set
({
'chrome-app-sync'
:
true
});
...
...
src/app.js
View file @
66acb7a0
/* global alert, confirm, prompt, Option, Worker, soljsonSources */
var
$
=
require
(
'jquery'
);
var
utils
=
require
(
'./app/utils'
);
...
...
src/app/editor.js
View file @
66acb7a0
/* global BALLOT_EXAMPLE, FileReader */
var
utils
=
require
(
'./utils'
);
var
ace
=
require
(
'brace'
);
...
...
src/app/execution-context.js
View file @
66acb7a0
/* global confirm */
var
$
=
require
(
'jquery'
);
var
Web3
=
require
(
'web3'
);
...
...
src/app/gist-handler.js
View file @
66acb7a0
/* global prompt */
var
queryParams
=
require
(
'./query-params'
);
function
handleLoad
(
cb
)
{
...
...
src/app/storage-handler.js
View file @
66acb7a0
/* global chrome, confirm, localStorage */
var
utils
=
require
(
'./utils'
);
function
StorageHandler
(
updateFiles
)
{
...
...
src/universal-dapp.js
View file @
66acb7a0
/* global prompt */
var
$
=
require
(
'jquery'
);
var
EthJSVM
=
require
(
'ethereumjs-vm'
);
var
ethJSUtil
=
require
(
'ethereumjs-util'
);
...
...
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