mirror of
https://github.com/holub/mame
synced 2025-04-18 22:49:58 +03:00
Adding missed files (nw)
This commit is contained in:
parent
020055dd72
commit
1f0e1ff587
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -8962,6 +8962,9 @@ src/ume/ume.lst svneol=native#text/plain
|
||||
src/ume/ume.mak svneol=native#text/plain
|
||||
src/version.c svneol=native#text/plain
|
||||
web/commands.html svneol=native#text/html
|
||||
web/confirmexit.html svneol=native#text/plain
|
||||
web/confirmhardreset.html svneol=native#text/plain
|
||||
web/confirmsoftreset.html svneol=native#text/plain
|
||||
web/css/images/ajax-loader.gif -text
|
||||
web/css/images/icons-18-black.png -text svneol=unset#image/png
|
||||
web/css/images/icons-18-white.png -text svneol=unset#image/png
|
||||
|
23
web/confirmexit.html
Normal file
23
web/confirmexit.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="pragma" content="no-cache">
|
||||
<meta http-equiv="expires" content="-1">
|
||||
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<title>MAME</title>
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<link rel="stylesheet" href="css/jquery.mobile.css">
|
||||
</head>
|
||||
<body>
|
||||
<div data-role="page" data-close-btn="none" id="confirmhardreset">
|
||||
<div data-role="header">
|
||||
<h1>Confirm: Exit emulator?</h1>
|
||||
</div>
|
||||
<a href="javascript:executeExit();" data-theme="a" data-role="button">Yes</a>
|
||||
<a href="javascript:$('.ui-dialog').dialog('close');" data-role="button">Cancel</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
25
web/confirmhardreset.html
Normal file
25
web/confirmhardreset.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="pragma" content="no-cache">
|
||||
<meta http-equiv="expires" content="-1">
|
||||
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<title>MAME</title>
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<link rel="stylesheet" href="css/jquery.mobile.css">
|
||||
<!-- jQuery and jQuery Mobile -->
|
||||
<script src="js/jquery.js"></script>
|
||||
<script src="js/jquery.mobile.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div data-role="page" data-close-btn="none" id="confirmhardreset">
|
||||
<div data-role="header">
|
||||
<h1>Confirm: Hard Reset?</h1>
|
||||
</div>
|
||||
<a href="javascript:executeHardReset();" data-theme="a" data-role="button">Yes</a>
|
||||
<a href="javascript:$('.ui-dialog').dialog('close');" data-role="button">Cancel</a>
|
||||
</div>
|
||||
</body>
|
23
web/confirmsoftreset.html
Normal file
23
web/confirmsoftreset.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="pragma" content="no-cache">
|
||||
<meta http-equiv="expires" content="-1">
|
||||
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<title>MAME</title>
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<link rel="stylesheet" href="css/jquery.mobile.css">
|
||||
</head>
|
||||
<body>
|
||||
<div data-role="page" data-close-btn="none" id="confirmhardreset">
|
||||
<div data-role="header">
|
||||
<h1>Confirm: Soft Reset?</h1>
|
||||
</div>
|
||||
<a href="javascript:executeSoftReset();" data-theme="a" data-role="button">Yes</a>
|
||||
<a href="javascript:$('.ui-dialog').dialog('close');" data-role="button">Cancel</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user