Skip to content

Commit

Permalink
Update demo to refactored scrs
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanWagner committed Oct 25, 2018
1 parent 9f4b919 commit f99b462
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 18 deletions.
17 changes: 2 additions & 15 deletions Demo/Demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0">

<link rel="stylesheet" href="../Source/jBox.css">
<link rel="stylesheet" href="../Source/plugins/Notice/jBox.Notice.css">
<link rel="stylesheet" href="../Source/plugins/Confirm/jBox.Confirm.css">
<link rel="stylesheet" href="../Source/plugins/Image/jBox.Image.css">
<link rel="stylesheet" href="../Source/themes/NoticeFancy.css">
<link rel="stylesheet" href="../Source/themes/TooltipBorder.css">
<link rel="stylesheet" href="../Source/themes/TooltipBorderThick.css">
<link rel="stylesheet" href="../Source/themes/TooltipDark.css">
<link rel="stylesheet" href="../Source/themes/TooltipSmall.css">
<link rel="stylesheet" href="../Source/themes/TooltipSmallGray.css">
<link rel="stylesheet" href="../Source/themes/TooltipError.css">
<link rel="stylesheet" href="../dist/jBox.all.css">
<link rel="stylesheet" href="./Demo.css">
<link rel="stylesheet" href="./Playground/Playground.Avatars.css">
<link rel="stylesheet" href="./Playground/Playground.Login.css">
Expand Down Expand Up @@ -87,10 +77,7 @@ <h2>Playground</h2>

</main>

<script src="../Source/jBox.js"></script>
<script src="../Source/plugins/Notice/jBox.Notice.js"></script>
<script src="../Source/plugins/Confirm/jBox.Confirm.js"></script>
<script src="../Source/plugins/Image/jBox.Image.js"></script>
<script src="../dist/jBox.all.js"></script>
<script src="./Demo.js"></script>
<script src="./Playground/Playground.Avatars.js"></script>
<script src="./Playground/Playground.Login.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions Demo/Demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ $('#Notice-3').click(function() {
},
color: getColor(),
content: 'Hello, I\'m down here',
audio: '../Source/audio/bling2',
audio: '../assets/audio/bling2',
volume: 80,
animation: {open: 'slide:bottom', close: 'slide:left'}
});
Expand Down Expand Up @@ -288,7 +288,7 @@ $('#Notice-7').click(function() {
content: getString(),
title: getTitle(),
maxWidth: 600,
audio: '../Source/audio/bling2',
audio: '../assets/audio/bling2',
volume: 80,
autoClose: Math.random() * 8000 + 2000,
animation: {open: 'slide:bottom', close: 'slide:left'},
Expand Down
2 changes: 1 addition & 1 deletion Demo/Playground/Playground.Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ $(document).ready(function() {
password: $('#loginPassword').val(),
remember: $('.login-checkbox').hasClass('login-checkbox-active') ? 1 : 0
},
method: 'post',
method: 'get',
beforeSend: function () {
this.startRequest();
}.bind(this),
Expand Down

0 comments on commit f99b462

Please # to comment.