Last active
August 29, 2015 14:22
-
-
Save lbjay/a4643116a076ef304b9b to your computer and use it in GitHub Desktop.
canvas styleguide foolery
This file contains 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
$(document).ready(function(e) { | |
var harvardLogo = "<a class='harvardLogo' href='/'><img src='https://s3.amazonaws.com/tlt-static/canvas/branding/global/images/spacer.gif'></a>"; | |
$('#header-inner').prepend(harvardLogo); | |
var harvardCopy = '<p>Copyright © 2015 The President and Fellows of Harvard College</p>'; | |
harvardCopy += '<p><a href="https://wiki.harvard.edu/confluence/display/canvas/Harvard+Privacy+Policy+for+Canvas" id="privacy_policy_link">Privacy Policy</a> | <a href="https://wiki.harvard.edu/confluence/display/canvas/Harvard+Acceptable+Use+Policy+for+Canvas" id="acceptable_use_policy_link">Acceptable Use Policy</a></p>'; | |
$('footer').html(harvardCopy); | |
}); | |
var foo = "bar"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment