Fix missing semicolon in annotation html

This commit is contained in:
Calen Pennington
2014-05-19 15:34:29 -04:00
parent a7139a84b6
commit 9ca09db469
2 changed files with 2 additions and 2 deletions

View File

@@ -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');

View File

@@ -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');