Skip to content

Commit

Permalink
Add favicon. Update icons name.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed May 28, 2019
1 parent 1139f8b commit 027954e
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 18 deletions.
Binary file added favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<meta name="description" content="Medical viewer using DWV (DICOM Web Viewer) and jQuery UI.">
<meta name="keywords" content="DICOM,HTML5,JavaScript,medical,imaging,DWV">
<meta name="theme-color" content="#3ba22f"/>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="manifest" href="manifest.json">
<link type="text/css" rel="stylesheet" href="css/style.css">
<link type="text/css" rel="stylesheet" href="ext/jquery-ui/themes/ui-darkness/jquery-ui-1.12.1.min.css">
Expand Down
33 changes: 20 additions & 13 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,36 @@
"theme_color": "#3ba22f",
"start_url": "/dwv-jqui/demo/trunk/index.html",
"scope": "/dwv-jqui/demo/trunk",
"icons": [{
"src": "resources/icons/dwv-16.png",
"icons": [
{
"src": "resources/icons/icon-16.png",
"sizes": "16x16",
"type": "image/png"
}, {
"src": "resources/icons/dwv-32.png",
},
{
"src": "resources/icons/icon-32.png",
"sizes": "32x32",
"type": "image/png"
}, {
"src": "resources/icons/dwv-64.png",
},
{
"src": "resources/icons/icon-64.png",
"sizes": "64x64",
"type": "image/png"
}, {
"src": "resources/icons/dwv-128.png",
},
{
"src": "resources/icons/icon-128.png",
"sizes": "128x128",
"type": "image/png"
}, {
"src": "resources/icons/dwv-256.png",
},
{
"src": "resources/icons/icon-256.png",
"sizes": "256x256",
"type": "image/png"
}, {
"src": "resources/icons/dwv-512.png",
},
{
"src": "resources/icons/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}]
}
]
}
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
10 changes: 5 additions & 5 deletions service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ var urlsToCache = [
'./src/appgui.js',
'./src/register-sw.js',
// images
'./resources/icons/dwv-16.png',
'./resources/icons/dwv-32.png',
'./resources/icons/dwv-64.png',
'./resources/icons/dwv-128.png',
'./resources/icons/dwv-256.png',
'./resources/icons/icon-16.png',
'./resources/icons/icon-32.png',
'./resources/icons/icon-64.png',
'./resources/icons/icon-128.png',
'./resources/icons/icon-256.png',
'./resources/help/click.png',
'./resources/help/double_click.png',
'./resources/help/mouse_drag.png',
Expand Down

0 comments on commit 027954e

Please sign in to comment.