Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
vidjil
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1,688
Issues
1,688
List
Boards
Labels
Service Desk
Milestones
Merge Requests
85
Merge Requests
85
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vidjil
vidjil
Commits
b22e31a8
Commit
b22e31a8
authored
Jan 21, 2016
by
HERBERT Ryan
Committed by
Vidjil Team
Mar 08, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
builder.js main.js removed unused db from builder
parent
48fe0d60
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
browser/js/builder.js
browser/js/builder.js
+1
-2
browser/js/main.js
browser/js/main.js
+1
-1
No files found.
browser/js/builder.js
View file @
b22e31a8
function
Builder
(
model
,
database
)
{
function
Builder
(
model
)
{
if
(
typeof
model
!=
"
undefined
"
){
if
(
typeof
model
!=
"
undefined
"
){
this
.
m
=
model
;
//Model utilisé
this
.
m
=
model
;
//Model utilisé
this
.
m
.
view
.
push
(
this
);
//synchronisation au Model
this
.
m
.
view
.
push
(
this
);
//synchronisation au Model
}
}
this
.
db
=
database
;
this
.
colorMethod
=
""
;
this
.
colorMethod
=
""
;
this
.
width_left_container
=
$
(
"
#left-container
"
)
this
.
width_left_container
=
$
(
"
#left-container
"
)
.
css
(
"
width
"
)
.
css
(
"
width
"
)
...
...
browser/js/main.js
View file @
b22e31a8
...
@@ -81,7 +81,7 @@ var db = new Database(m);
...
@@ -81,7 +81,7 @@ var db = new Database(m);
* The builder completes some informations in the menu and provide some tools
* The builder completes some informations in the menu and provide some tools
* TODO replace with a menu and info view
* TODO replace with a menu and info view
*/
*/
var
builder
=
new
Builder
(
m
,
db
);
var
builder
=
new
Builder
(
m
);
/* [WIP] Shortcut (optional)
/* [WIP] Shortcut (optional)
...
...
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