Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
humanities
gargantext
Commits
99a92b14
Commit
99a92b14
authored
Nov 03, 2014
by
Mathieu Rodic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FEATURE] Better parameters validation for the Graph class constructor
parent
6c9a2986
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
plot.js
tests/charts/plot.js
+7
-1
No files found.
tests/charts/plot.js
View file @
99a92b14
...
...
@@ -545,9 +545,15 @@ var Graph = function(container, width, height) {
};
(
function
()
{
if
(
typeof
(
container
)
!=
'object'
)
{
if
(
typeof
(
container
)
!=
'object'
||
!
container
.
style
)
{
console
.
error
(
'The first parameter of the Graph class constructor should be a valid DOM object.'
);
}
if
(
!
width
)
{
width
=
container
.
style
.
width
;
}
if
(
!
height
)
{
height
=
container
.
style
.
height
;
}
var
canvas
=
document
.
createElement
(
'canvas'
);
var
canvasContext
=
canvas
.
getContext
&&
canvas
.
getContext
(
'2d'
);
if
(
!!
canvasContext
)
{
...
...
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