forked from GitHub/dbot
Move project scripts to an external file.
* Add link to ``project.js`` on project webpage. * Move scripts to ``project.js``. * Very definitely not do anything else.
This commit is contained in:
parent
f129c36f5e
commit
9114ee25a9
15
public/project.js
Normal file
15
public/project.js
Normal file
@ -0,0 +1,15 @@
|
||||
$(document).ready(function() {
|
||||
$.get("https://api.github.com/repos/#{repo}/pulls", function(data) {
|
||||
if ($.parseJSON(data).length) { $("#pullreq").show();}
|
||||
});
|
||||
});
|
||||
$(document).keypress(function(e) {
|
||||
WebFontConfig={google:{families:["Ubuntu::latin"]}};(function(){var e=document.createElement("script");e.src=("https:"==document.location.protocol?"https":"http")+"://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js";e.type="text/javascript";e.async="true";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)})()
|
||||
$('body').css({
|
||||
"background-image":"url('http://i.imgur.com/Yh8V2Oa.jpg')",
|
||||
"font-family": "Ubuntu, \"Source Sans Pro\",sans-serif"
|
||||
});
|
||||
$('a').css("color","#DD4814");
|
||||
$('#title').css("color","white");
|
||||
$('#main').css("border-color","#420432");
|
||||
});
|
@ -7,14 +7,7 @@ html(lang='#{curr839}')
|
||||
link(rel="stylesheet", type="text/css", href="/bootstrap/css/bootstrap.min.css")
|
||||
link(rel='stylesheet', type='text/css', href='/styles.css')
|
||||
link(rel="stylesheet", href="/project.css")
|
||||
title #{pagetitle}
|
||||
script
|
||||
$(document).ready(function() {
|
||||
$.get("https://api.github.com/repos/#{repo}/pulls", function(data) {
|
||||
if ($.parseJSON(data).length) { $("#pullreq").show();}
|
||||
});
|
||||
});
|
||||
|
||||
script(src="../project.js")
|
||||
body
|
||||
div.container
|
||||
div#page
|
||||
|
Loading…
Reference in New Issue
Block a user