Merge pull request #5105 from goobertron/jquery_default
Change default for jQuery CDN to false
This commit is contained in:
commit
a1e547f8d7
3 changed files with 7 additions and 6 deletions
|
|
@ -5,6 +5,7 @@
|
|||
## Bug fixes
|
||||
|
||||
## Features
|
||||
* Don't pull jQuery from a CDN by default [#5105](https://github.com/diaspora/diaspora/pull/5105)
|
||||
|
||||
# 0.4.1.0
|
||||
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ defaults:
|
|||
embed_sidekiq_worker: false
|
||||
sidekiq_workers: 1
|
||||
privacy:
|
||||
jquery_cdn: true
|
||||
jquery_cdn: false
|
||||
google_analytics_key:
|
||||
piwik:
|
||||
enable: false
|
||||
|
|
|
|||
|
|
@ -172,11 +172,11 @@ configuration: ## Section
|
|||
## Settings potentially affecting the privacy of your users
|
||||
privacy: ## Section
|
||||
|
||||
## Include jQuery from jquery.com's CDN (default=true)
|
||||
## This can save you some traffic and speeds up load time since most
|
||||
## clients already have this one cached. Set this to false if you want
|
||||
## the jQuery library to be loaded from your pod's own resources.
|
||||
#jquery_cdn: true
|
||||
## Include jQuery from jquery.com's CDN (default=false)
|
||||
## Enabling this can reduce traffic and speed up load time since most
|
||||
## clients already have this one cached. When set to false (the default),
|
||||
## the jQuery library will be loaded from your pod's own resources.
|
||||
#jquery_cdn: false
|
||||
|
||||
## Google Analytics (disabled by default)
|
||||
## Provide a key to enable tracking by Google Analytics
|
||||
|
|
|
|||
Loading…
Reference in a new issue