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
bcafc5fd
Commit
bcafc5fd
authored
12 years ago
by
cahrens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix for modal cover not going way when click outside of edit (#106).
parent
ee9b9d04
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
22 deletions
+14
-22
cms/static/coffee/src/views/module_edit.coffee
+6
-2
cms/static/js/base.js
+8
-20
No files found.
cms/static/coffee/src/views/module_edit.coffee
View file @
bcafc5fd
...
...
@@ -56,7 +56,7 @@ class CMS.Views.ModuleEdit extends Backbone.View
event
.
preventDefault
()
data
=
@
module
.
save
()
data
.
metadata
=
_
.
extend
(
data
.
metadata
,
@
metadata
())
$modalCover
.
hide
()
@
hideModal
()
@
model
.
save
(
data
).
done
(
=>
# # showToastMessage("Your changes have been saved.", null, 3)
@
module
=
null
...
...
@@ -70,11 +70,15 @@ class CMS.Views.ModuleEdit extends Backbone.View
event
.
preventDefault
()
@
$el
.
removeClass
(
'editing'
)
@
$component_editor
().
slideUp
(
150
)
@
hideModal
()
hideModal
:
->
$modalCover
.
hide
()
$modalCover
.
removeClass
(
'is-fixed'
)
clickEditButton
:
(
event
)
->
event
.
preventDefault
()
@
$el
.
addClass
(
'editing'
)
$modalCover
.
show
()
$modalCover
.
show
()
.
addClass
(
'is-fixed'
)
@
$component_editor
().
slideDown
(
150
)
@
loadEdit
()
This diff is collapsed.
Click to expand it.
cms/static/js/base.js
View file @
bcafc5fd
...
...
@@ -29,9 +29,7 @@ $(document).ready(function() {
$
(
'.expand-collapse-icon'
).
bind
(
'click'
,
toggleSubmodules
);
$
(
'.visibility-options'
).
bind
(
'change'
,
setVisibility
);
$
(
'.unit-history ol a'
).
bind
(
'click'
,
showHistoryModal
);
$modal
.
bind
(
'click'
,
hideModal
);
$modalCover
.
bind
(
'click'
,
hideHistoryModal
);
$modalCover
.
bind
(
'click'
,
hideModal
);
$
(
'.assets .upload-button'
).
bind
(
'click'
,
showUploadModal
);
$
(
'.upload-modal .close-button'
).
bind
(
'click'
,
hideModal
);
...
...
@@ -498,9 +496,14 @@ function hideModal(e) {
if(e) {
e.preventDefault();
}
$('
.
file
-
input
').unbind('
change
', startUpload);
$modal.hide();
$modalCover.hide();
// Unit editors do not want the modal cover to hide when users click outside
// of the editor. Users must press Cancel or Save to exit the editor.
// module_edit adds and removes the "is-fixed" class.
if (!$modalCover.hasClass("is-fixed")) {
$('
.
file
-
input
').unbind('
change
', startUpload);
$modal.hide();
$modalCover.hide();
}
}
function onKeyUp(e) {
...
...
@@ -530,21 +533,6 @@ function closeComponentEditor(e) {
$(this).closest('
.
xmodule_edit
').removeClass('
editing
').find('
.
component
-
editor
').slideUp(150);
}
function showHistoryModal(e) {
e.preventDefault();
$modal.show();
$modalCover.show();
}
function hideHistoryModal(e) {
e.preventDefault();
$modal.hide();
$modalCover.hide();
}
function showDateSetter(e) {
e.preventDefault();
var $block = $(this).closest('
.
due
-
date
-
input
');
...
...
This diff is collapsed.
Click to expand it.
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