Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
fix: don't use local Raleway fonts
· 2f5d582e
David Loiret
authored
May 28, 2018
and
Jean-Baptiste Kempf
committed
May 28, 2018
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
2f5d582e
Use local jQuery
· c8ae2fb2
David Loiret
authored
May 28, 2018
and
Jean-Baptiste Kempf
committed
May 28, 2018
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
c8ae2fb2
Expand all
Hide whitespace changes
Inline
Side-by-side
www.videolan.org/include/header.php
View file @
c8ae2fb2
...
...
@@ -224,7 +224,7 @@ function start_head( $title,
<?php
/* jQuery */
?>
<?php
/* Get the one in the Google CDN to get cached */
?>
<script
src=
'//ajax.googleapis.com/ajax/libs/jquery/1.9.1
/jquery.min.js'
type=
'text/javascript'
></script>
<script
src=
"
<?=
isDeveloper
()
?
'/js/jquery.min.js'
:
'//images.videolan.org/js
/jquery.min.js'
?>
"
type=
'text/javascript'
></script>
<script
async=
"async"
src=
"
<?=
isDeveloper
()
?
'/js/bootstrap.min.js'
:
'//images.videolan.org/js/bootstrap.min.js'
?>
"
type=
"text/javascript"
></script>
<?php
if
(
isset
(
$additional_js
)
)
{
foreach
(
$additional_js
as
$js
)
{
...
...
www.videolan.org/js/jquery.min.js
View file @
c8ae2fb2
This diff is collapsed.
Click to expand it.
www.videolan.org/style/style.scss
View file @
c8ae2fb2
...
...
@@ -62,8 +62,7 @@ $font-path-raleway: "/style/fonts/Raleway";
font-family
:
"Raleway"
;
font-style
:
normal
;
font-weight
:
100
;
src
:
local
(
"Raleway Thin"
)
,
local
(
"Raleway-Thin"
)
,
url('
#{
$font-path-raleway
}
/Raleway-Thin.eot')
,
src
:
url('
#{
$font-path-raleway
}
/Raleway-Thin.eot')
,
url('
#{
$font-path-raleway
}
/Raleway-Thin.eot?#iefix')
format
(
'embedded-opentype'
)
,
url('
#{
$font-path-raleway
}
/Raleway-Thin.woff2')
format
(
'woff2'
)
,
url('
#{
$font-path-raleway
}
/Raleway-Thin.woff')
format
(
'woff'
)
,
...
...