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
6e0a455c
Commit
6e0a455c
authored
Mar 17, 2014
by
David Baumgold
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2730 from ionis-education-group/fix-static-urls
Fix URLs for static resources
parents
76566be2
a41e904a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
lms/templates/courseware/xqa_interface.html
+3
-1
lms/templates/open_ended_problems/combined_notifications.html
+1
-1
lms/templates/static_pdfbook.html
+4
-4
No files found.
lms/templates/courseware/xqa_interface.html
View file @
6e0a455c
<script
type=
"text/javascript"
src=
"/static/js/vendor/jquery.leanModal.min.js"
></script>
<
%
namespace
name=
'static'
file=
'/static_content.html'
/>
<script
type=
"text/javascript"
src=
"${static.url('js/vendor/jquery.leanModal.min.js')}"
></script>
<script
type=
"text/javascript"
>
function
setup_debug
(
element_id
,
edit_link
,
staff_context
){
...
...
lms/templates/open_ended_problems/combined_notifications.html
View file @
6e0a455c
...
...
@@ -36,7 +36,7 @@
<a
href=
"${notification['url']}"
class=
"notification-link"
>
<div
class=
"notification-title"
>
${notification['name']}
</div>
%if notification['alert']:
<p
class=
"alert-message"
><img
src=
"
/static/images/grading_notification.png
"
/>
${notification['alert_message']}
</p>
<p
class=
"alert-message"
><img
src=
"
${static.url('images/grading_notification.png')}
"
/>
${notification['alert_message']}
</p>
%endif
<div
class=
"notification-description"
>
<p>
${notification['description']}
</p>
...
...
lms/templates/static_pdfbook.html
View file @
6e0a455c
...
...
@@ -10,10 +10,10 @@
<
%
static:css
group=
'style-course-vendor'
/>
<
%
static:css
group=
'style-course'
/>
<
%
static:js
group=
'courseware'
/>
<link
rel=
"stylesheet"
href=
"
/static/css/pdfviewer.css
"
/>
<script
type=
"text/javascript"
src=
"
/static/js/vendor/pdfjs/pdf.js
"
></script>
<script
type=
"text/javascript"
src=
"
/static/js/vendor/pdfjs/compatibility.js
"
></script>
<script
type=
"text/javascript"
src=
"
/static/js/pdfviewer.js
"
></script>
<link
rel=
"stylesheet"
href=
"
${static.url('css/pdfviewer.css')}
"
/>
<script
type=
"text/javascript"
src=
"
${static.url('js/vendor/pdfjs/pdf.js')}
"
></script>
<script
type=
"text/javascript"
src=
"
${static.url('js/vendor/pdfjs/compatibility.js')}
"
></script>
<script
type=
"text/javascript"
src=
"
${static.url('js/pdfviewer.js')}
"
></script>
</
%
block>
<
%
block
name=
"js_extra"
>
...
...
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