-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPdfJsAsset.php
46 lines (37 loc) · 893 Bytes
/
PdfJsAsset.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace yii2assets\pdfjs;
use yii\web\AssetBundle;
use yii\web\View;
/**
* PdfJs Asset bundle
* @author Sathit Seethaphon <[email protected]>
*/
class PdfJsAsset extends AssetBundle
{
public $sourcePath = '@yii2assets/pdfjs/assets';
public $js = [
'web/compatibility.js',
// 'web/l10n.js',
'build/pdf.js',
'build/pdf.worker.js',
'web/debugger.js',
'web/viewer.js'
];
public $jsOptions = [
'position'=> View::POS_HEAD
];
public $css = [
'web/viewer.css'
];
public function init()
{
parent::init(); // TODO: Change the autogenerated stub
for ($i = 0; $i < count($this->css); $i++) {
$this->css[$i] .= '?' . uniqid();
}
for ($i = 0; $i < count($this->js); $i++) {
$this->js[$i] .= '?' . uniqid();
}
}
}
?>