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
6517b067
Commit
6517b067
authored
Mar 27, 2014
by
Valera Rozuvan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3092 from edx/valera/fix_tender
Fix failing tender.
parents
ba8faead
e50fad64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
cms/templates/base.html
+9
-1
common/static/js/src/tender_fallback.js
+1
-0
No files found.
cms/templates/base.html
View file @
6517b067
...
...
@@ -80,7 +80,12 @@
"URI"
:
"js/vendor/URI.min"
,
// externally hosted files
"tender"
:
"//edxedge.tenderapp.com/tender_widget"
,
"tender"
:
[
"//edxedge.tenderapp.com/tender_widget"
,
// if tender fails to load, fallback on a local file
// so that require doesn't fall over
"js/src/tender_fallback"
],
"mathjax"
:
"//edx-static.s3.amazonaws.com/mathjax-MathJax-727332c/MathJax.js?config=TeX-MML-AM_HTMLorMML-full&delayStartupUntil=configured"
,
"youtube"
:
[
// youtube URL does not end in ".js". We add "?noext" to the path so
...
...
@@ -169,6 +174,9 @@
deps
:
[
"backbone"
],
exports
:
"Backbone.Paginator"
},
"tender"
:
{
exports
:
'Tender'
},
"youtube"
:
{
exports
:
"YT"
},
...
...
common/static/js/src/tender_fallback.js
0 → 100644
View file @
6517b067
console
.
error
(
"Can't load Tender -- anything that relies on it will fail"
);
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