Commit 9ca09db4 by Calen Pennington

Fix missing semicolon in annotation html

parent a7139a84
......@@ -46,7 +46,7 @@
//Grab uri of the course
var parts = window.location.href.split("/"),
uri = '',
uri = '';
for (var index = 0; index <= 9; index += 1) uri += parts[index]+"/"; //Get the unit url
//Change uri in cms
var lms_location = $('.sidebar .preview-button').attr('href');
......
......@@ -49,7 +49,7 @@
//Grab uri of the course
var parts = window.location.href.split("/"),
uri = '',
uri = '';
for (var index = 0; index <= 9; index += 1) uri += parts[index]+"/"; //Get the unit url
//Change uri in cms
var lms_location = $('.sidebar .preview-button').attr('href');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment