From 0c4dc9ce4d3e8c85c992b2b5e894cf9a4637ed56 Mon Sep 17 00:00:00 2001
From: Michael Fairchild <mfairchild365@gmail.com>
Date: Mon, 27 Jul 2015 09:19:44 -0500
Subject: [PATCH] Make the UNLchat intro text less awkward

Right now on top level pages the, UNLchat says 'CHAT WITH WELCOME TO NEBRASKA', this changes it so that it says 'CHAT WITH UNL'.  The 'Welcome to nebraska' bit was awkward.
---
 sharedcode/localSiteLinks.html  | 2 ++
 sharedcode/scripts/top_level.js | 5 +++++
 2 files changed, 7 insertions(+)
 create mode 100644 sharedcode/scripts/top_level.js

diff --git a/sharedcode/localSiteLinks.html b/sharedcode/localSiteLinks.html
index 396539c1..28d105c2 100644
--- a/sharedcode/localSiteLinks.html
+++ b/sharedcode/localSiteLinks.html
@@ -1,2 +1,4 @@
 
 <link rel="home" href="http://www.unl.edu/" title="UNL" />
+
+<script src="/ucomm/sharedcode/scripts/top_level.js"></script>
diff --git a/sharedcode/scripts/top_level.js b/sharedcode/scripts/top_level.js
new file mode 100644
index 00000000..fde0cc07
--- /dev/null
+++ b/sharedcode/scripts/top_level.js
@@ -0,0 +1,5 @@
+
+// Set the site title for TOP level sites so that the intro text is nicer (and the site title changes)
+var visitorchat_config = {
+	'site_title' : 'UNL'
+};
-- 
GitLab