Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
FloodSimulation-Browser
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Richard Torenvliet
FloodSimulation-Browser
Commits
1b251929
Commit
1b251929
authored
May 05, 2012
by
Richard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rest of files
parent
03f5085d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
0 deletions
+30
-0
www/app/store/SimulationsSummary.js
www/app/store/SimulationsSummary.js
+17
-0
www/app/view/StepsOverlay.js
www/app/view/StepsOverlay.js
+13
-0
No files found.
www/app/store/SimulationsSummary.js
0 → 100644
View file @
1b251929
Ext
.
define
(
'
app.store.SimulationsSummary
'
,
{
extend
:
'
Ext.data.Store
'
,
requires
:
[
'
Ext.data.proxy.Rest
'
],
config
:
{
autoLoad
:
true
,
fields
:[
'
simulations
'
,
'
area_id
'
,
'
test_id
'
,
'
submitted
'
],
proxy
:
{
type
:
'
rest
'
,
url
:
'
http://sangkil.science.uva.nl:8003/drfsm/list.json?summary
'
,
reader
:
{
type
:
'
json
'
,
rootProperty
:
'
simulations
'
}
}
}
});
\ No newline at end of file
www/app/view/StepsOverlay.js
0 → 100644
View file @
1b251929
Ext
.
define
(
'
app.view.StepsOverlay
'
,
{
extend
:
'
Ext.Panel
'
,
xtype
:
'
StepsOverlay
'
,
id
:
'
overlay
'
,
config
:
{
floating
:
true
,
modal
:
true
,
width
:
300
,
height
:
50
,
scroll
:
false
,
}
});
\ No newline at end of file
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