Skip to content

Commit 12d9336

Browse files
committed
Fixed reposiroty typo
1 parent eed4752 commit 12d9336

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

config/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
}
9090
},
9191
"standalone" : {
92-
"reposiroty": "../repository/"
92+
"repository": "../repository/"
9393
}
9494
}
9595

doc/integrate_basic.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ To add Paella Player to your portal, you need to do some easy steps:
1111
To configure paella you need to edit the ´config/config.json´ file. You can read how to configure paella
1212
in the [configuration page](configure.md)
1313

14-
In the `config/config.jsonfile` you need to modify the `standalone.reposiroty` parameter to point to your
14+
In the `config/config.jsonfile` you need to modify the `standalone.repository` parameter to point to your
1515
repository folder. This value can be a relative URL or an absolute URL.
1616

1717
```js
1818
"standalone": {
19-
"reposiroty": "../repository/"
19+
"repository": "../repository/"
2020
}
2121
```
2222

paella-standalone.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ paella.standalone.StandAloneVideoLoader = Class.create(paella.VideoLoader, {
9898
}
9999
else {
100100
try {
101-
return paella.player.config.standalone.reposiroty;
101+
return paella.player.config.standalone.repository;
102102
}
103103
catch(e) {
104104
return "";
@@ -429,7 +429,7 @@ paella.dataDelegates.StandaloneCaptionsDataDelegate = Class.create(paella.DataDe
429429
if (selectedCaption){
430430
var url = selectedCaption.url;
431431
if (! /^[a-zA-Z]+:\/\//.test(url)) {
432-
url = paella.player.config.standalone.reposiroty + "/" + params.id + "/" + url;
432+
url = paella.player.config.standalone.repository + "/" + params.id + "/" + url;
433433
}
434434

435435
if (onSuccess) { onSuccess({error: false, url: url, format: selectedCaption.format}, true); }

0 commit comments

Comments
 (0)