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
176be159
Commit
176be159
authored
Jan 17, 2013
by
Alexander Kryklia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed unnecssary debug information
parent
f22af62f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
common/lib/xmodule/xmodule/js/src/graphical_slider_tool/graph.js
+2
-2
common/lib/xmodule/xmodule/js/src/graphical_slider_tool/gst_main.js
+1
-1
common/lib/xmodule/xmodule/js/src/graphical_slider_tool/sliders.js
+3
-3
common/lib/xmodule/xmodule/js/src/graphical_slider_tool/state.js
+1
-1
No files found.
common/lib/xmodule/xmodule/js/src/graphical_slider_tool/graph.js
View file @
176be159
...
@@ -401,7 +401,7 @@ define('Graph', ['logme'], function (logme) {
...
@@ -401,7 +401,7 @@ define('Graph', ['logme'], function (logme) {
return
false
;
return
false
;
}
}
}
else
{
}
else
{
logme
(
'MESSAGE: "xticks" were not specified. Using defaults.'
);
//
logme('MESSAGE: "xticks" were not specified. Using defaults.');
return
false
;
return
false
;
}
}
...
@@ -416,7 +416,7 @@ define('Graph', ['logme'], function (logme) {
...
@@ -416,7 +416,7 @@ define('Graph', ['logme'], function (logme) {
return
false
;
return
false
;
}
}
}
else
{
}
else
{
logme
(
'MESSAGE: "yticks" were not specified. Using defaults.'
);
//
logme('MESSAGE: "yticks" were not specified. Using defaults.');
return
false
;
return
false
;
}
}
...
...
common/lib/xmodule/xmodule/js/src/graphical_slider_tool/gst_main.js
View file @
176be159
...
@@ -19,7 +19,7 @@ define(
...
@@ -19,7 +19,7 @@ define(
if
(
$
(
'#'
+
gstId
).
attr
(
'data-processed'
)
!==
'processed'
)
{
if
(
$
(
'#'
+
gstId
).
attr
(
'data-processed'
)
!==
'processed'
)
{
$
(
'#'
+
gstId
).
attr
(
'data-processed'
,
'processed'
);
$
(
'#'
+
gstId
).
attr
(
'data-processed'
,
'processed'
);
}
else
{
}
else
{
logme
(
'MESSAGE: Already processed GST with ID '
+
gstId
+
'. Skipping.'
);
//
logme('MESSAGE: Already processed GST with ID ' + gstId + '. Skipping.');
return
;
return
;
}
}
...
...
common/lib/xmodule/xmodule/js/src/graphical_slider_tool/sliders.js
View file @
176be159
...
@@ -20,9 +20,9 @@ define('Sliders', ['logme'], function (logme) {
...
@@ -20,9 +20,9 @@ define('Sliders', ['logme'], function (logme) {
}
else
if
(
sliderDiv
.
length
>
1
)
{
}
else
if
(
sliderDiv
.
length
>
1
)
{
logme
(
'ERROR: Found more than one slider for the parameter "'
+
paramName
+
'".'
);
logme
(
'ERROR: Found more than one slider for the parameter "'
+
paramName
+
'".'
);
logme
(
'sliderDiv.length = '
,
sliderDiv
.
length
);
logme
(
'sliderDiv.length = '
,
sliderDiv
.
length
);
}
else
{
}
//
else {
logme
(
'MESSAGE: Did not find a slider for the parameter "'
+
paramName
+
'".'
);
//
logme('MESSAGE: Did not find a slider for the parameter "' + paramName + '".');
}
//
}
}
}
function
createSlider
(
sliderDiv
,
paramName
)
{
function
createSlider
(
sliderDiv
,
paramName
)
{
...
...
common/lib/xmodule/xmodule/js/src/graphical_slider_tool/state.js
View file @
176be159
...
@@ -24,7 +24,7 @@ define('State', ['logme'], function (logme) {
...
@@ -24,7 +24,7 @@ define('State', ['logme'], function (logme) {
dynamicElByElId
=
{};
dynamicElByElId
=
{};
stateInst
+=
1
;
stateInst
+=
1
;
logme
(
'MESSAGE: Creating state instance # '
+
stateInst
+
'.'
);
//
logme('MESSAGE: Creating state instance # ' + stateInst + '.');
// Initially, there are no parameters to track. So, we will instantiate
// Initially, there are no parameters to track. So, we will instantiate
// an empty object.
// an empty object.
...
...
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