mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
2.1 KiB
47 lines
2.1 KiB
error = (title, text = '', links = '') ->
|
|
text = """<p class="_error-text">#{text}</p>""" if text
|
|
links = """<p class="_error-links">#{links}</p>""" if links
|
|
"""<div class="_error"><h1 class="_error-title">#{title}</h1>#{text}#{links}</div>"""
|
|
|
|
back = '<a href="javascript:history.back()" class="_error-link">Go back</a>'
|
|
|
|
app.templates.notFoundPage = ->
|
|
error """ Oops, that page doesn't exist. """,
|
|
""" It may be missing from the source documentation or this could be a bug. """,
|
|
back
|
|
|
|
app.templates.pageLoadError = ->
|
|
error """ Oops, that page failed to load. """,
|
|
""" It may be missing from the server or you could be offline.<br>
|
|
If you keep seeing this, you're likely behind a proxy or firewall which blocks cross-domain requests. """,
|
|
""" #{back} · <a href="#" class="_error-link" data-retry>Retry</a> """
|
|
|
|
app.templates.bootError = ->
|
|
error """ Oops, the app failed to load. """,
|
|
""" Check your Internet connection and try <a href="javascript:location.reload()">reloading</a>.<br>
|
|
If you keep seeing this, you're likely behind a proxy or firewall that blocks cross-domain requests. """
|
|
|
|
app.templates.unsupportedBrowser = """
|
|
<div class="_fail">
|
|
<h1 class="_fail-title">Your browser is unsupported, sorry.</h1>
|
|
<p class="_fail-text">DevDocs is an API documentation browser which supports the following browsers:
|
|
<ul class="_fail-list">
|
|
<li>Recent versions of Chrome and Firefox
|
|
<li>Safari 5.1+
|
|
<li>Opera 12.1+
|
|
<li>Internet Explorer 10+
|
|
<li>iOS 6+
|
|
<li>Android 4.1+
|
|
<li>Windows Phone 8+
|
|
</ul>
|
|
<p class="_fail-text">
|
|
If you're unable to upgrade, I apologize.
|
|
I decided to prioritize speed and new features over support for older browsers.
|
|
<p class="_fail-text">
|
|
Note: if you're already using one of the browsers above, check your settings and add-ons.
|
|
The app uses feature detection, not user agent sniffing.
|
|
<p class="_fail-text">
|
|
— Thibaut <a href="https://twitter.com/DevDocs" class="_fail-link">@DevDocs</a>
|
|
</div>
|
|
"""
|