This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/js/single-page-site-scroll.js | |
+++ b/js/single-page-site-scroll.js | |
@@ -9,10 +9,11 @@ | |
// On page load, smooth scroll. | |
/* global destination */ | |
var hash = window.location.hash; | |
- var heightDifference = $(document).height() - $(window).height(); | |
+ | |
if (hash) { | |
- Drupal.behaviors.scrollToAnchor.scrollToDestination($(hash).offset().top, heightDifference); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
web_service='nginx' | |
FILES=/usr/local/etc/letsencrypt/*.ini | |
for f in $FILES | |
do | |
echo "Renewing for $f file..." | |
config_file="$f" |