Skip to content

Commit 4149604

Browse files
committed
Copy changes
1 parent 28b4149 commit 4149604

5 files changed

Lines changed: 7 additions & 8 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
notice = (text) -> """<p class="_notice-text">#{text}</p>"""
22

33
app.templates.singleDocNotice = (doc) ->
4-
notice """ You're currently browsing the #{doc.fullName} documentation. To browse all docs, go to
4+
notice """ You're browsing the #{doc.fullName} documentation. To browse all docs, go to
55
<a href="http://#{app.config.production_host}" target="_top">#{app.config.production_host}</a> (or press <code>esc</code>). """
66

77
app.templates.disabledDocNotice = ->
8-
notice """ <strong>This documentation is currently disabled.</strong>
8+
notice """ <strong>This documentation is disabled.</strong>
99
To enable it, click <a href="#" class="_notice-link" data-pick-docs>Select documentation</a>. """

assets/javascripts/templates/notif_tmpl.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ app.templates.notifUpdates = (docs, disabledDocs) ->
5050

5151
app.templates.notifShare = ->
5252
textNotif """ Hi there! """,
53-
""" Like DevDocs? Help us reach more developers by sharing the link with your friends, on
53+
""" Like DevDocs? Help us reach more developers by sharing the link with your friends on
5454
<a href="http://out.devdocs.io/s/tw" target="_blank">Twitter</a>, <a href="http://out.devdocs.io/s/fb" target="_blank">Facebook</a>,
5555
<a href="http://out.devdocs.io/s/re" target="_blank">Reddit</a>, etc.<br>Thanks :) """
5656

assets/javascripts/templates/pages/about_tmpl.coffee

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ app.templates.aboutPage = -> """
7272
<li><a href="https://github.com/gruehle/dev-docs-viewer">Brackets extension</a>
7373
<li><a href="https://github.com/xuchunyang/DevDocs.el">Emacs Package</a>
7474
</ul>
75-
<p>You can also use <a href="http://fluidapp.com">Fluid</a> to turn DevDocs into a real OS X app.
7675
7776
<h2 class="_lined-heading" id="privacy">Privacy Policy</h2>
7877
<ul>

lib/app.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,9 @@ def supports_js_redirection?
260260
'/s/jetbrains/c' => 'https://www.jetbrains.com/clion/?utm_source=devdocs&utm_medium=sponsorship&utm_campaign=devdocs',
261261
'/s/jetbrains/web' => 'https://www.jetbrains.com/webstorm/?utm_source=devdocs&utm_medium=sponsorship&utm_campaign=devdocs',
262262
'/s/code-school' => 'http://www.codeschool.com/?utm_campaign=devdocs&utm_content=homepage&utm_source=devdocs&utm_medium=sponsorship',
263-
'/s/tw' => 'https://twitter.com/intent/tweet?url=http%3A%2F%2Fdevdocs.io&via=DevDocs&text=All-in-one%2C%20offline%20API%20documentation%20browser%3A',
263+
'/s/tw' => 'https://twitter.com/intent/tweet?url=http%3A%2F%2Fdevdocs.io&via=DevDocs&text=All-in-one%20API%20documentation%20browser%20with%20offline%20mode%20and%20instant%20search%3A',
264264
'/s/fb' => 'https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fdevdocs.io',
265-
'/s/re' => 'http://www.reddit.com/submit?url=http%3A%2F%2Fdevdocs.io&title=All-in-one%2C%20offline%20API%20documentation%20browser&resubmit=true'
265+
'/s/re' => 'https://www.reddit.com/submit?url=http%3A%2F%2Fdevdocs.io&title=All-in-one%20API%20documentation%20browser%20with%20offline%20mode%20and%20instant%20search&resubmit=true'
266266
}.each do |path, url|
267267
class_eval <<-CODE, __FILE__, __LINE__ + 1
268268
get '#{path}' do

views/index.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<head>
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no,shrink-to-fit=no">
6-
<meta name="description" content="DevDocs is a fast, offline API documentation browser with 80+ docs including HTML, CSS, JavaScript, PHP, Ruby, Python, Go, C, C++, jQuery, and more.">
6+
<meta name="description" content="DevDocs is a fast, offline API documentation browser with 100+ docs including HTML, CSS, JavaScript, PHP, Ruby, Python, Go, C, C++, jQuery, and more.">
77
<meta property="og:title" content="DevDocs">
8-
<meta property="og:description" content="DevDocs is an API documentation browser that combines 80+ docs in a single UI with offline mode, instant search, keyboard shortcuts, and more.">
8+
<meta property="og:description" content="DevDocs is an API documentation browser that combines 100+ docs in a single UI with offline mode, instant search, keyboard shortcuts, and more.">
99
<meta property="og:type" content="website">
1010
<meta property="og:url" content="http://devdocs.io">
1111
<meta property="og:image" content="https://cdn.devdocs.io/images/icon-128.png">

0 commit comments

Comments
 (0)