Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
c56d1b5e
Commit
c56d1b5e
authored
May 13, 2013
by
Valera Rozuvan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Checked JS files with linter, corrected a few minor issues.
parent
b78e0440
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
common/lib/xmodule/xmodule/js/src/word_cloud/word_cloud_main.js
+3
-6
No files found.
common/lib/xmodule/xmodule/js/src/word_cloud/word_cloud_main.js
View file @
c56d1b5e
...
...
@@ -10,7 +10,7 @@
*
* @requires logme
*
* @external d3
* @external d3
, $, RequireJS
*/
(
function
(
requirejs
,
require
,
define
)
{
...
...
@@ -165,7 +165,7 @@ define('WordCloudMain', ['logme'], function (logme) {
d3
.
layout
.
cloud
().
size
([
this
.
width
,
this
.
height
])
.
words
(
words
)
.
rotate
(
function
()
{
return
~~
(
Math
.
random
()
*
2
)
*
90
;
return
Math
.
floor
((
Math
.
random
()
*
2
)
*
90
)
;
})
.
font
(
'Impact'
)
.
fontSize
(
function
(
d
)
{
...
...
@@ -201,11 +201,8 @@ define('WordCloudMain', ['logme'], function (logme) {
* coordinate object contains two properties: 'x', and 'y'.
*/
WordCloudMain
.
prototype
.
drawWordCloud
=
function
(
response
,
words
,
bounds
)
{
// The first word in the list of user enetered words does not get a leading comma.
var
firstWord
=
false
,
// Color words in different colors.
fill
=
d3
.
scale
.
category20
(),
var
fill
=
d3
.
scale
.
category20
(),
// Will be populated by words the user enetered.
studentWordsKeys
=
[],
...
...
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