Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
1470045b
Commit
1470045b
authored
12 years ago
by
Bridger Maxwell
Browse files
Options
Downloads
Patches
Plain Diff
Fixed wiki circuit editor modal to be a little better styled.
parent
a4b97c5f
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/static/js/vendor/CodeMirror/mitx_markdown.js
+12
-7
12 additions, 7 deletions
common/static/js/vendor/CodeMirror/mitx_markdown.js
lms/static/sass/course/wiki/_wiki.scss
+55
-1
55 additions, 1 deletion
lms/static/sass/course/wiki/_wiki.scss
with
67 additions
and
8 deletions
common/static/js/vendor/CodeMirror/mitx_markdown.js
+
12
−
7
View file @
1470045b
...
...
@@ -10,9 +10,17 @@ $(function(){
$
(
document
).
ready
(
function
()
{
//$("a[rel*=leanModal]").leanModal(); //TODO: Make this work with the new modal library. Try and integrate this with the "slices"
$
(
"
body
"
).
append
(
'
<div id="circuit_editor" class="leanModal_box"><div align="center">
'
+
'
<input class="schematic" height="
'
+
schematic_editor_height
+
'
" width="
'
+
schematic_editor_width
+
'
" id="schematic_editor" name="schematic" type="hidden" value=""/>
'
+
'
<button type="button" id="circuit_save_btn" class="btn-primary">save</button></div></div>
'
);
$
(
"
body
"
).
append
(
'
\
<div id="circuit_editor_modal" class="modal hide fade">
\
<div class="modal-body">
\
<input class="schematic" height="
'
+
schematic_editor_height
+
'
" width="
'
+
schematic_editor_width
+
'
" id="schematic_editor" name="schematic" type="hidden" value=""/>
\
</div>
\
<div class="modal-footer">
\
<button type="button" id="circuit_save_btn" class="btn btn-primary" data-dismiss="modal">
\
Save circuit
\
</button>
\
</div>
\
</div>
'
);
//This is the editor that pops up as a modal
var
editorCircuit
=
$
(
"
#schematic_editor
"
).
get
(
0
);
...
...
@@ -47,8 +55,6 @@ $(function(){
if
(
editingCircuit
.
codeMirrorLine
)
{
editingCircuit
.
codeMirrorLine
.
replace
(
0
,
null
,
"
circuit-schematic:
"
+
saving_circuit
);
}
$
(
"
.modal_close
"
).
first
().
click
();
});
});
});
...
...
@@ -117,7 +123,7 @@ CodeMirror.defineMode("mitx_markdown", function(cmCfg, modeCfg) {
circuit_value
=
escapeHtml
(
circuit_value
);
var
html
=
"
<div style='display:block;line-height:0;' class='schematic_container'><a href='#circuit_editor
' rel='leanM
odal' class='schematic_open' style='display:inline-block;'>
"
+
var
html
=
"
<div style='display:block;line-height:0;' class='schematic_container'><a href='#circuit_editor
_modal' data-toggle='m
odal' class='schematic_open' style='display:inline-block;'>
"
+
"
<input type='hidden' parts='' value='
"
+
circuit_value
+
"
' width='
"
+
schematic_width
+
"
' height='
"
+
schematic_height
+
"
' analyses='' class='schematic ctrls'/></a></div>
"
;
return
html
;
...
...
@@ -135,7 +141,6 @@ CodeMirror.defineMode("mitx_markdown", function(cmCfg, modeCfg) {
schmInput
.
schematic
.
always_draw_grid
=
true
;
schmInput
.
schematic
.
redraw_background
();
}
$
(
node
.
firstChild
).
leanModal
();
}
catch
(
err
)
{
console
.
log
(
"
Error in mitx_markdown callback:
"
+
err
);
}
...
...
This diff is collapsed.
Click to expand it.
lms/static/sass/course/wiki/_wiki.scss
+
55
−
1
View file @
1470045b
...
...
@@ -790,4 +790,58 @@ section.wiki {
.modal-preview
.main-article
{
width
:
100%
!
important
;
margin-left
:
0
;
}
\ No newline at end of file
}
#circuit_editor_modal
.modal
{
width
:
648px
;
z-index
:
9999
;
margin-left
:
-325px
;
top
:
150px
;
.modal-header
{
h1
,
p
{
color
:
#fff
;
}
h1
{
margin
:
3px
12px
8px
;
font-size
:
1
.1em
;
}
p
{
font-size
:
0
.9em
;
margin
:
5px
12px
20px
;
line-height
:
1em
;
}
}
.modal-body
{
padding-bottom
:
8px
;
}
.modal-footer
{
margin
:
12px
;
}
.modal-footer
.btn
{
@include
button
(
simple
,
#eee
);
font-size
:
0
.8em
;
margin-right
:
5px
;
line-height
:
1
.2em
;
text-transform
:
none
!
important
;
letter-spacing
:
0
!
important
;
&
:hover
{
color
:
$base-font-color
;
text-decoration
:
none
;
}
&
.btn-primary
{
@include
button
;
font-size
:
0
.8em
;
}
margin-right
:
10px
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment