mirror of https://github.com/Kylart/KawAnime.git
Changed require call in informationPage and Downloader page
This commit is contained in:
parent
e87cdff20d
commit
b30a0a0cce
|
@ -4,7 +4,7 @@
|
|||
<inspection_tool class="HtmlUnknownAttribute" enabled="true" level="WARNING" enabled_by_default="true">
|
||||
<option name="myValues">
|
||||
<value>
|
||||
<list size="10">
|
||||
<list size="11">
|
||||
<item index="0" class="java.lang.String" itemvalue="@keydown.enter" />
|
||||
<item index="1" class="java.lang.String" itemvalue="v-on:click" />
|
||||
<item index="2" class="java.lang.String" itemvalue="v-bind:style" />
|
||||
|
@ -15,6 +15,7 @@
|
|||
<item index="7" class="java.lang.String" itemvalue="v-bind:href" />
|
||||
<item index="8" class="java.lang.String" itemvalue=":href" />
|
||||
<item index="9" class="java.lang.String" itemvalue="v-bind:src" />
|
||||
<item index="10" class="java.lang.String" itemvalue="@keydown.delete" />
|
||||
</list>
|
||||
</value>
|
||||
</option>
|
||||
|
|
|
@ -56,7 +56,9 @@
|
|||
</div>
|
||||
|
||||
<script>
|
||||
require('./downloader.js')
|
||||
const path = require('path')
|
||||
|
||||
require(path.join(__dirname, 'downloader.js'))
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -18,6 +18,11 @@
|
|||
</transition>
|
||||
</div>
|
||||
|
||||
<script>require(`${__dirname}/informations.js`)</script>
|
||||
<script>
|
||||
const path = require('path')
|
||||
|
||||
require(path.join(__dirname, 'informations.js'))
|
||||
// require(`${__dirname}/informations.js`)
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue