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
c914400c
Commit
c914400c
authored
May 22, 2015
by
Sarina Canelake
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8158 from gymnasium/gymnasium/fix-invalid-selector
fixed invalid CSS selectors
parents
a3cea74a
1dcce2c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
cms/static/js/views/settings/main.js
+2
-2
No files found.
cms/static/js/views/settings/main.js
View file @
c914400c
...
@@ -122,8 +122,8 @@ var DetailsView = ValidatingView.extend({
...
@@ -122,8 +122,8 @@ var DetailsView = ValidatingView.extend({
setupDatePicker
:
function
(
fieldName
)
{
setupDatePicker
:
function
(
fieldName
)
{
var
cacheModel
=
this
.
model
;
var
cacheModel
=
this
.
model
;
var
div
=
this
.
$el
.
find
(
'#'
+
this
.
fieldToSelectorMap
[
fieldName
]);
var
div
=
this
.
$el
.
find
(
'#'
+
this
.
fieldToSelectorMap
[
fieldName
]);
var
datefield
=
$
(
div
).
find
(
"input
:
.date"
);
var
datefield
=
$
(
div
).
find
(
"input.date"
);
var
timefield
=
$
(
div
).
find
(
"input
:
.time"
);
var
timefield
=
$
(
div
).
find
(
"input.time"
);
var
cachethis
=
this
;
var
cachethis
=
this
;
var
setfield
=
function
()
{
var
setfield
=
function
()
{
var
newVal
=
DateUtils
.
getDate
(
datefield
,
timefield
),
var
newVal
=
DateUtils
.
getDate
(
datefield
,
timefield
),
...
...
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