forked from 20xd6/simple_blog
Move Prism files to a properly spelled directory
Moved the Prism project files from /common/prisim/ to /common/prism/. Updated the code in /common/page_format.js that loads these files.
This commit is contained in:
@@ -10,9 +10,9 @@ function format_page(){//Set the title of the page based on the main header, <h1
|
||||
var script = document.createElement('script');
|
||||
var style_sheet = document.createElement('link');
|
||||
script.type = 'text/javascript';
|
||||
script.src = '/common/prisim/prism.js';
|
||||
script.src = '/common/prism/prism.js';
|
||||
style_sheet.type = 'text/css';
|
||||
style_sheet.href = '/common/prisim/prism.css';
|
||||
style_sheet.href = '/common/prism/prism.css';
|
||||
style_sheet.rel = 'stylesheet';
|
||||
document.head.appendChild(script);
|
||||
document.head.appendChild(style_sheet);
|
||||
|
||||
Reference in New Issue
Block a user