diff options
author | 2013-10-01 14:12:22 +0000 | |
---|---|---|
committer | 2013-10-01 14:12:22 +0000 | |
commit | 1f0e1ff5878dcf9bede58cb25b45bdacb741772a (patch) | |
tree | a11021202e978ee79f61cd19000972c883b101ce | |
parent | 020055dd728aec5396be25e4ae813091cded142a (diff) |
Adding missed files (nw)
-rw-r--r-- | .gitattributes | 3 | ||||
-rw-r--r-- | web/confirmexit.html | 23 | ||||
-rw-r--r-- | web/confirmhardreset.html | 25 | ||||
-rw-r--r-- | web/confirmsoftreset.html | 23 |
4 files changed, 74 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index e5b10ec4e06..754daf2c698 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/web/confirmexit.html b/web/confirmexit.html new file mode 100644 index 00000000000..9ce1ae4570e --- /dev/null +++ b/web/confirmexit.html @@ -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>
\ No newline at end of file diff --git a/web/confirmhardreset.html b/web/confirmhardreset.html new file mode 100644 index 00000000000..de7422cfced --- /dev/null +++ b/web/confirmhardreset.html @@ -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>
\ No newline at end of file diff --git a/web/confirmsoftreset.html b/web/confirmsoftreset.html new file mode 100644 index 00000000000..7b45c1e5d73 --- /dev/null +++ b/web/confirmsoftreset.html @@ -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>
\ No newline at end of file |