File manager - Edit - /home/autoph/public_html/portal/ajs/vendors/bower_components/bootstrap-sweetalert/index.html
Back
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta property="og:title" content="Social Buttons for Bootstrap" /> <meta property="og:description" content="A beautiful replacement for JavaScript's 'alert' for Bootstrap" /> <meta property="og:type" content="website" /> <meta property="og:url" content="http://lipis.github.io/bootstrap-sweetalert/" /> <meta property="og:image" content="http://lipis.github.io/bootstrap-social/assets/bootstrap-sweetalert.png" /> <title>SweetAlert for Bootstrap</title> <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="//code.jquery.com/jquery-2.1.1.js"></script> <link href="assets/docs.css" rel="stylesheet"> <!-- Debug --> <script src="//localhost:32123/livereload.js"></script> <!-- This is what you need --> <script src="lib/sweet-alert.js"></script> <link rel="stylesheet" href="lib/sweet-alert.css"> <!--.......................--> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-42119746-3', 'auto'); ga('send', 'pageview'); </script> </head> <body> <div class="jumbotron"> <h1>SweetAlert for Bootstrap</h1> <p>A beautiful replacement for JavaScript's "alert"</p> <p class="small"> This is just a clone for Bootstrap of the original <a href="http://tristanedwards.me/sweetalert" target="_blank" onclick="_gaq.push(['_trackEvent', 'exit', 'header', 'Original']);">SweetAlert</a>. </p> <p> <a class="btn btn-outline btn-lg" href="https://github.com/lipis/sweetalert" onclick="_gaq.push(['_trackEvent', 'exit', 'main', 'GitHub']);"> <span class="fa fa-github"></span> View on GitHub </a> </p> <ul class="jumbotron-links"> <li><a href="http://lipis.github.io/bootstrap-social" onclick="_gaq.push(['_trackEvent', 'exit', 'header', 'bootstrap-social']);"><i class="fa fa-group"></i> bootstrap-social</a></li> <li><a href="http://lipis.github.io/flag-icon-css" onclick="_gaq.push(['_trackEvent', 'exit', 'header', 'flag-icon-css']);"><i class="fa fa-flag"></i> flag-icon-css</a></li> </ul> <iframe src="http://ghbtns.com/github-btn.html?user=lipis&repo=bootstrap-sweetalert&type=watch&count=true" class="social-share"></iframe> <a href="https://twitter.com/share" class="social-share twitter-share-button" data-url="http://lipis.github.io/bootstrap-sweetalert/" data-text="SweetAlert for Bootstrap! A beautiful replacement for JavaScript's 'alert'." data-via="lipis" data-hashtags="bootstrap">Tweet</a> </div> <div class="container"> <h1>Try any of those!</h1> <div class="examples"> <button class="btn btn-lg btn-primary sweet-10" onclick="_gaq.push(['_trackEvent', 'example, 'try', 'Primary']);">Primary</button> <button class="btn btn-lg btn-info sweet-11" onclick="_gaq.push(['_trackEvent', 'example, 'try', 'Info']);">Info</button> <button class="btn btn-lg btn-success sweet-12" onclick="_gaq.push(['_trackEvent', 'example, 'try', 'Success']);">Success</button> <button class="btn btn-lg btn-warning sweet-13" onclick="_gaq.push(['_trackEvent', 'example, 'try', 'Warning']);">Warning</button> <button class="btn btn-lg btn-danger sweet-14" onclick="_gaq.push(['_trackEvent', 'example, 'try', 'Danger']);">Danger</button> </div> <h2>Install via Bower</h2> <pre class="text-center lead">$ bower install bootstrap-sweetalert</pre> <p class="text-muted text-center lead"> Continue playing with the examples or check how to use it on <a href="https://github.com/lipis/bootstrap-sweetalert#sweetalert-for-bootstrap">GitHub</a>. </p> <h2>Original Examples</h2> <h4>Basic example</h4> <div class="row"> <div class="col-sm-2 text-center"> <p><button class="btn btn-primary sweet-1" onclick="_gaq.push(['_trackEvent', 'example', 'try', 'sweet-1']);">Try It</button></p> </div> <div class="col-sm-10"> <pre class="code">swal("Here's a message!")</pre> </div> </div> <h4>A title with a text under</h4> <div class="row"> <div class="col-sm-2 text-center"> <p><button class="btn btn-primary sweet-2" onclick="_gaq.push(['_trackEvent', 'example', 'try', 'sweet-2']);">Try It</button></p> </div> <div class="col-sm-10"> <pre>swal("Here's a message!", "It's pretty, isn't it?")</pre> </div> </div> <h4>A success message!</h4> <div class="row"> <div class="col-sm-2 text-center"> <p><button class="btn btn-primary sweet-3" onclick="_gaq.push(['_trackEvent', 'example', 'try', 'sweet-3']);">Try It</button></p> </div> <div class="col-sm-10"> <pre>swal("Good job!", "You clicked the button!", "success")</pre> </div> </div> <h4>A warning message, with a function attached to the "Confirm" button...</h4> <div class="row"> <div class="col-sm-2 text-center"> <p><button class="btn btn-primary sweet-4" onclick="_gaq.push(['_trackEvent', 'example', 'try', 'sweet-4']);">Try It</button></p> </div> <div class="col-sm-10"> <pre> swal({ title: "Are you sure?", text: "Your will not be able to recover this imaginary file!", type: "warning", showCancelButton: true, confirmButtonClass: "btn-danger", confirmButtonText: "Yes, delete it!", closeOnConfirm: false }, function(){ swal("Deleted!", "Your imaginary file has been deleted.", "success"); });</pre> </div> </div> <h4>...and by passing a parameter, you can execute something else for "Cancel".</h4> <div class="row"> <div class="col-sm-2 text-center"> <p><button class="btn btn-primary sweet-5" onclick="_gaq.push(['_trackEvent', 'example', 'try', 'sweet-5']);">Try It</button></p> </div> <div class="col-sm-10"> <pre> swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "warning", showCancelButton: true, confirmButtonClass: "btn-danger", confirmButtonText: "Yes, delete it!", cancelButtonText: "No, cancel plx!", closeOnConfirm: false, closeOnCancel: false }, function(isConfirm) { if (isConfirm) { swal("Deleted!", "Your imaginary file has been deleted.", "success"); } else { swal("Cancelled", "Your imaginary file is safe :)", "error"); } });</pre> </div> </div> <h4>A message with a custom icon</h4> <div class="row"> <div class="col-sm-2 text-center"> <p><button class="btn btn-primary sweet-6" onclick="_gaq.push(['_trackEvent', 'exit', 'footer', 'Lipis']);">Try It</button></p> </div> <div class="col-sm-10"> <pre> swal({ title: "Sweet!", text: "Here's a custom image.", imageUrl: 'thumbs-up.jpg' });</pre> </div> </div> </div> <footer> <ul class="links"> <li><a href="http://lip.is" onclick="_gaq.push(['_trackEvent', 'exit', 'footer', 'Lipis']);">Lipis</a></li> <li><a href="http://github.com/lipis" onclick="_gaq.push(['_trackEvent', 'exit', 'footer', 'GitHub']);"><i class="fa fa-github"></i> GitHub</a></li> <li><a href="http://twitter.com/lipis" onclick="_gaq.push(['_trackEvent', 'exit', 'footer', 'Twitter']);"><i class="fa fa-twitter"></i> Twitter</a></li> <li><a href="http://google.com/+PanayiotisLipiridis" onclick="_gaq.push(['_trackEvent', 'exit', 'footer', 'Google+']);"><i class="fa fa-google-plus"></i> Google+</a></li> <li><a href="http://opensource.org/licenses/MIT" onclick="_gaq.push(['_trackEvent', 'exit', 'footer', 'MIT']);"><i class="fa fa-building"></i> MIT License</a></li> </ul> </footer> <script> document.querySelector('.sweet-1').onclick = function(){ swal("Here's a message!"); }; document.querySelector('.sweet-2').onclick = function(){ swal("Here's a message!", "It's pretty, isn't it?") }; document.querySelector('.sweet-3').onclick = function(){ swal("Good job!", "You clicked the button!", "success"); }; document.querySelector('.sweet-4').onclick = function(){ swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "warning", showCancelButton: true, confirmButtonClass: 'btn-danger', confirmButtonText: 'Yes, delete it!', closeOnConfirm: false, //closeOnCancel: false }, function(){ swal("Deleted!", "Your imaginary file has been deleted!", "success"); }); }; document.querySelector('.sweet-5').onclick = function(){ swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "warning", showCancelButton: true, confirmButtonClass: 'btn-danger', confirmButtonText: 'Yes, delete it!', cancelButtonText: "No, cancel plx!", closeOnConfirm: false, closeOnCancel: false }, function(isConfirm){ if (isConfirm){ swal("Deleted!", "Your imaginary file has been deleted!", "success"); } else { swal("Cancelled", "Your imaginary file is safe :)", "error"); } }); }; document.querySelector('.sweet-6').onclick = function(){ swal({ title: "Sweet!", text: "Here's a custom image.", imageUrl: 'assets/thumbs-up.jpg' }); }; document.querySelector('.sweet-10').onclick = function(){ swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "info", showCancelButton: true, confirmButtonClass: 'btn-primary', confirmButtonText: 'Primary!' }); }; document.querySelector('.sweet-11').onclick = function(){ swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "info", showCancelButton: true, confirmButtonClass: 'btn-info', confirmButtonText: 'Info!' }); }; document.querySelector('.sweet-12').onclick = function(){ swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "success", showCancelButton: true, confirmButtonClass: 'btn-success', confirmButtonText: 'Success!' }); }; document.querySelector('.sweet-13').onclick = function(){ swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "warning", showCancelButton: true, confirmButtonClass: 'btn-warning', confirmButtonText: 'Warning!' }); }; document.querySelector('.sweet-14').onclick = function(){ swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "error", showCancelButton: true, confirmButtonClass: 'btn-danger', confirmButtonText: 'Danger!' }); }; </script> <script> !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs'); </script> </body> </html>
| ver. 1.4 |
.
| PHP 7.3.33 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings