Remove old libraryUrl due to conflict with Content Upgrade

pull/58/head
Frode Petterson 2019-03-07 14:33:01 +01:00
parent 53adda67c2
commit e9d08b973a
1 changed files with 1 additions and 1 deletions

View File

@ -1932,7 +1932,7 @@ H5P.libraryFromString = function (library) {
* The full path to the library.
*/
H5P.getLibraryPath = function (library) {
return (H5PIntegration.libraryUrl !== undefined ? H5PIntegration.libraryUrl + '/' : H5PIntegration.url + '/libraries/') + library;
return H5PIntegration.url + '/libraries/' + library;
};
/**