Override alert box with a jquery-ui dialog box.
This commit is contained in:
parent
2525dc5f9f
commit
9c93257008
3 changed files with 35 additions and 3 deletions
|
@ -5,6 +5,7 @@
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="stylesheet" type="text/css" media="all" href="/css/html5reset-1.6.1.css" />
|
<link rel="stylesheet" type="text/css" media="all" href="/css/html5reset-1.6.1.css" />
|
||||||
<link rel="stylesheet" type="text/css" media="all" href="/css/style.css" />
|
<link rel="stylesheet" type="text/css" media="all" href="/css/style.css" />
|
||||||
|
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/smoothness/jquery-ui.css" type="text/css" />
|
||||||
|
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
|
||||||
|
|
||||||
|
@ -44,8 +45,15 @@
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
$(function () {
|
||||||
|
$.altAlert({
|
||||||
|
resizable: false,
|
||||||
|
});
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
<script src="js/jquery.filedrop.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
|
||||||
<script src="js/upload.js"></script>
|
<script src="/js/jquery.altAlert.js"></script>
|
||||||
|
<script src="/js/jquery.filedrop.js"></script>
|
||||||
|
<script src="/js/upload.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -28,7 +28,9 @@ html {
|
||||||
body {
|
body {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
min-height: 600px;
|
min-height: 600px;
|
||||||
font: 14px/1.3 'Segoe UI',Arial, sans-serif;
|
/*font: 14px/1.3 'Segoe UI',Arial, sans-serif;*/
|
||||||
|
font-family: 'Segoe UI', Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a, a:visited {
|
a, a:visited {
|
||||||
|
@ -56,6 +58,7 @@ header {
|
||||||
header{
|
header{
|
||||||
background-color: #303030;
|
background-color: #303030;
|
||||||
background-image: url(../img/dark_circles.png);
|
background-image: url(../img/dark_circles.png);
|
||||||
|
font-size: 16px;
|
||||||
/*position: fixed;*/
|
/*position: fixed;*/
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
|
|
21
js/jquery.altAlert.js
Normal file
21
js/jquery.altAlert.js
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
jQuery.altAlert = function (options)
|
||||||
|
{
|
||||||
|
var defaults = {
|
||||||
|
title: "Alert",
|
||||||
|
buttons: {
|
||||||
|
"Ok": function()
|
||||||
|
{
|
||||||
|
jQuery(this).dialog("close");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
jQuery.extend(defaults, options);
|
||||||
|
|
||||||
|
delete defaults.autoOpen;
|
||||||
|
|
||||||
|
window.alert = function ()
|
||||||
|
{
|
||||||
|
jQuery("<div />", { html: arguments[0].replace(/\n/, "<br />") }).dialog(defaults);
|
||||||
|
};
|
||||||
|
};
|
Loading…
Reference in a new issue