index.html 20.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
<!doctype html>

<html>

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
  <title>SweetAlert</title>

  <link rel="stylesheet" href="example/example.css">
  <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>

  <!-- This is what you need -->
  <script src="dist/sweetalert-dev.js"></script>
  <link rel="stylesheet" href="dist/sweetalert.css">
  <!--.......................-->

</head>

<body>

<h1>Sweet Alert</h1>
<h2>A beautiful replacement for JavaScript's "Alert"</h2>
<button class="download">Download</button>

<!-- What does it do? -->
<h3>So... What does it do?</h3>
<p>Here’s a comparison of a standard error message. The first one uses the built-in <strong>alert</strong>-function, while the second is using <strong>sweetAlert</strong>.</p>

<div class="showcase normal">
	<h4>Normal alert</h4>
	<button>Show error message</button>

	<h5>Code:</h5>
	<pre><span class="attr">alert</span>(<span class="str">"Oops... Something went wrong!"</span>);

	</pre>

	<div class="vs-icon"></div>
</div>

<div class="showcase sweet">
	<h4>Sweet Alert</h4>
	<button>Show error message</button>

	<h5>Code:</h5>
	<pre><span class="attr">sweetAlert</span>(<span class="str">"Oops..."</span>, <span class="str">"Something went wrong!"</span>, <span class="str">"error"</span>);</pre>
</div>

<p>Pretty cool huh? SweetAlert automatically centers itself on the page and looks great no matter if you're using a desktop computer, mobile or tablet. It's even highly customizeable, as you can see below!</p>


<!-- Examples -->
<h3>More examples</h3>

<p class="center">In these examples, we're using the shorthand function <strong>swal</strong> to call sweetAlert.</p>

<ul class="examples">

	<li class="message">
		<div class="ui">
			<p>A basic message</p>
			<button>Try me!</button>
		</div>
		<pre><span class="attr">swal</span>(<span class="str">"Here's a message!"</span>)</pre>
	</li>

	<li class="title-text">
		<div class="ui">
			<p>A title with a text under</p>
			<button>Try me!</button>
		</div>
		<pre><span class="attr">swal</span>(<span class="str">"Here's a message!"</span>, <span class="str">"It's pretty, isn't it?"</span>)</pre>
	</li>

	<li class="success">
		<div class="ui">
			<p>A success message!</p>
			<button>Try me!</button>
		</div>
		<pre><span class="attr">swal</span>(<span class="str">"Good job!"</span>, <span class="str">"You clicked the button!"</span>, <span class="str">"success"</span>)</pre>
	</li>

	<li class="warning confirm">
		<div class="ui">
			<p>A warning message, with a function attached to the "Confirm"-button...</p>
			<button>Try me!</button>
		</div>
		<pre><span class="attr">swal</span>({
&nbsp;&nbsp;title: <span class="str">"Are you sure?"</span>,
&nbsp;&nbsp;text: <span class="str">"You will not be able to recover this imaginary file!"</span>,
&nbsp;&nbsp;type: <span class="str">"warning"</span>,
&nbsp;&nbsp;showCancelButton: <span class="val">true</span>,
&nbsp;&nbsp;confirmButtonColor: <span class="str">"#DD6B55"</span>,
&nbsp;&nbsp;confirmButtonText: <span class="str">"Yes, delete it!"</span>,
&nbsp;&nbsp;closeOnConfirm: <span class="val">false</span>
},
<span class="func"><i>function</i></span>(){
&nbsp;&nbsp;<span class="attr">swal</span>(<span class="str">"Deleted!"</span>, <span class="str">"Your imaginary file has been deleted."</span>, <span class="str">"success"</span>);
});</pre>
	</li>

	<li class="warning cancel">
		<div class="ui">
			<p>... and by passing a parameter, you can execute something else for "Cancel".</p>
			<button>Try me!</button>
		</div>
		<pre><span class="attr">swal</span>({
&nbsp;&nbsp;title: <span class="str">"Are you sure?"</span>,
&nbsp;&nbsp;text: <span class="str">"You will not be able to recover this imaginary file!"</span>,
&nbsp;&nbsp;type: <span class="str">"warning"</span>,
&nbsp;&nbsp;showCancelButton: <span class="val">true</span>,
&nbsp;&nbsp;confirmButtonColor: <span class="str">"#DD6B55"</span>,
&nbsp;&nbsp;confirmButtonText: <span class="str">"Yes, delete it!"</span>,
&nbsp;&nbsp;cancelButtonText: <span class="str">"No, cancel plx!"</span>,
&nbsp;&nbsp;closeOnConfirm: <span class="val">false</span>,
&nbsp;&nbsp;closeOnCancel: <span class="val">false</span>
},
<span class="func"><i>function</i></span>(isConfirm){
&nbsp;&nbsp;<span class="tag">if</span> (isConfirm) {
&nbsp;&nbsp;&nbsp;&nbsp;<span class="attr">swal</span>(<span class="str">"Deleted!"</span>, <span class="str">"Your imaginary file has been deleted."</span>, <span class="str">"success"</span>);
&nbsp;&nbsp;} <span class="tag">else</span> {
	&nbsp;&nbsp;&nbsp;&nbsp;<span class="attr">swal</span>(<span class="str">"Cancelled"</span>, <span class="str">"Your imaginary file is safe :)"</span>, <span class="str">"error"</span>);
&nbsp;&nbsp;}
});</pre>
	</li>

	<li class="custom-icon">
		<div class="ui">
			<p>A message with a custom icon</p>
			<button>Try me!</button>
		</div>
		<pre><span class="attr">swal</span>({
&nbsp;&nbsp;title: <span class="str">"Sweet!"</span>,
&nbsp;&nbsp;text: <span class="str">"Here's a custom image."</span>,
&nbsp;&nbsp;imageUrl: <span class="str">"images/thumbs-up.jpg"</span>
});</pre>
	</li>

	<li class="message-html">
		<div class="ui">
			<p>An HTML message</p>
			<button>Try me!</button>
		</div>
		<pre><span class="attr">swal</span>({
&nbsp;&nbsp;title: <span class="str">"HTML &lt;small&gt;Title&lt;/small&gt;!"</span>,
&nbsp;&nbsp;text: <span class="str">"A custom &lt;span style="color:#F8BB86"&gt;html&lt;span&gt; message."</span>,
&nbsp;&nbsp;html: <span class="val">true</span>
});</pre>
	</li>

	<li class="timer">
		<div class="ui">
			<p>A message with auto close timer</p>
			<button>Try me!</button>
		</div>
		<pre><span class="attr">swal</span>({
&nbsp;&nbsp;title: <span class="str">"Auto close alert!"</span>,
&nbsp;&nbsp;text: <span class="str">"I will close in 2 seconds."</span>,
&nbsp;&nbsp;timer: <span class="val">2000</span>,
&nbsp;&nbsp;showConfirmButton: <span class="val">false</span>
});</pre>
	</li>


	<li class="input">
		<div class="ui">
			<p>A replacement for the "prompt" function</p>
			<button>Try me!</button>
		</div>
		<pre><span class="attr">swal</span>({
&nbsp;&nbsp;title: <span class="str">"An input!"</span>,
&nbsp;&nbsp;text: <span class="str">"Write something interesting:"</span>,
&nbsp;&nbsp;type: <span class="str">"input"</span>,
&nbsp;&nbsp;showCancelButton: <span class="val">true</span>,
&nbsp;&nbsp;closeOnConfirm: <span class="val">false</span>,
&nbsp;&nbsp;animation: <span class="str">"slide-from-top"</span>,
&nbsp;&nbsp;inputPlaceholder: <span class="str">"Write something"</span>
},
<span class="func"><i>function</i></span>(<span class="arg">inputValue</span>){
&nbsp;&nbsp;<span class="tag">if</span> (inputValue <span class="tag">===</span> <span class="val">false</span>) <span class="tag">return</span> <span class="val">false</span>;
&nbsp;&nbsp;
&nbsp;&nbsp;<span class="tag">if</span> (inputValue <span class="tag">===</span> <span class="str">""</span>) {
&nbsp;&nbsp;&nbsp;&nbsp;swal<span class="tag">.</span><span class="attr">showInputError</span>(<span class="str">"You need to write something!"</span>);
&nbsp;&nbsp;&nbsp;&nbsp;<span class="tag">return</span> <span class="val">false</span>
&nbsp;&nbsp;}
&nbsp;&nbsp;
&nbsp;&nbsp;<span class="attr">swal</span>(<span class="str">"Nice!"</span>, <span class="str">"You wrote: "</span> + inputValue, <span class="str">"success"</span>);
});</pre>
	</li>

  <li class="ajax">
    <div class="ui">
			<p>With a loader (for AJAX request for example)</p>
			<button>Try me!</button>
		</div>
		<pre><span class="attr">swal</span>({
&nbsp;&nbsp;title: <span class="str">"Ajax request example"</span>,
&nbsp;&nbsp;text: <span class="str">"Submit to run ajax request"</span>,
&nbsp;&nbsp;type: <span class="str">"info"</span>,
&nbsp;&nbsp;showCancelButton: <span class="val">true</span>,
&nbsp;&nbsp;closeOnConfirm: <span class="val">false</span>,
&nbsp;&nbsp;showLoaderOnConfirm: <span class="val">true</span>,
},
<span class="func"><i>function</i></span>(){
&nbsp;&nbsp;<span class="attr">setTimeout</span>(<span class="func"><i>function</i></span>(){
&nbsp;&nbsp;&nbsp;&nbsp;<span class="attr">swal</span>(<span class="str">"Ajax request finished!"</span>);
&nbsp;&nbsp;}, <span class="val">2000</span>);
});</pre>
	</li>

	<li class="theme">
		<div class="ui">
			<p>You can also change the theme of SweetAlert!</p>
			<button>Try me!</button>
		</div>
		<pre>&lt;<span class="tag">link</span> <span class="attr">rel</span>=<span class="str">"stylesheet"</span> <span class="tag">type</span>=<span class="str">"text/css"</span> <span class="tag">href</span>=<span class="str">"dist/sweetalert.css"</span>&gt;
			&lt;<span class="tag">link</span> <span class="attr">rel</span>=<span class="str">"stylesheet"</span> <span class="tag">type</span>=<span class="str">"text/css"</span> <span class="tag">href</span>=<span class="str">"themes/twitter.css"</span>&gt;</pre>
	</li>

</ul>


<!-- Download & Install -->
<h3 id="download-section">Download & install</h3>

<div class="center-container">
	<p class="center"><b>Method 1:</b> Install through bower:</p>
	<pre class="center">$ bower install sweetalert</pre>
</div>

<div class="center-container">
	<p class="center"><b>Method 2:</b> Install through NPM:</p>
	<pre class="center">$ npm install sweetalert</pre>
</div>

<p class="center"><b>Method 3:</b> Download the sweetAlert <strong>CSS</strong> and <strong>JavaScript</strong> files.</p>

<a class="button" href="https://github.com/t4t5/sweetalert/archive/master.zip" download>Download files</a>

<ol>
	<li>
		<p>Initialize the plugin by referencing the necessary files:</p>
		<pre>&lt;<span class="tag">script</span> <span class="attr">src</span>=<span class="str">"dist/sweetalert.min.js"</span>&gt;&lt;/<span class="tag">script</span>&gt;
&lt;<span class="tag">link</span> <span class="attr">rel</span>=<span class="str">"stylesheet"</span> <span class="tag">type</span>=<span class="str">"text/css"</span> <span class="tag">href</span>=<span class="str">"dist/sweetalert.css"</span>&gt;</pre>
	</li>

	<li>
		<p>Call the sweetAlert-function after the page has loaded</p>
		<pre><span class="attr">swal</span>({
&nbsp;&nbsp;title: <span class="str">"Error!"</span>,
&nbsp;&nbsp;text: <span class="str">"Here's my error message!"</span>,
&nbsp;&nbsp;type: <span class="str">"error"</span>,
&nbsp;&nbsp;confirmButtonText: <span class="str">"Cool"</span>
});
</pre>
	</li>
</ol>



<!-- Configuration -->
<h3>Configuration</h3>

<p class="center">Here are the keys that you can use if you pass an object into sweetAlert:</p>

<table>
	<tr class="titles">
		<th>
			<div class="border-left"></div>
			Argument
		</th>
		<th>Default value</th>
		<th>
			<div class="border-right"></div>
			Description
		</th>
	</tr>
	<tr>
		<td><b>title</b></td>
		<td><i>null (required)</i></td>
		<td>The title of the modal. It can either be added to the object under the key "title" or passed as the first parameter of the function.</td>
	</tr>
	<tr>
		<td><b>text</b></td>
		<td><i>null</i></td>
		<td>A description for the modal. It can either be added to the object under the key "text" or passed as the second parameter of the function.</td>
	</tr>
	<tr>
		<td><b>type</b></td>
		<td><i>null</i></td>
		<td>The type of the modal. SweetAlert comes with 4 built-in types which will show a corresponding icon animation: "<strong>warning</strong>", "<strong>error</strong>", "<strong>success</strong>" and "<strong>info"</strong>. You can also set it as "<strong>input</strong>" to get a prompt modal. It can either be put in the object under the key "type" or passed as the third parameter of the function.</td>
	</tr>
    <tr>
      <td><b>allowEscapeKey</b></td>
      <td><i>true</i></td>
      <td>If set to <strong>true</strong>, the user can dismiss the modal by pressing the Escape key.</td>
    </tr>
	<tr>
		<td><b>customClass</b></td>
		<td><i>null</i></td>
		<td>A custom CSS class for the modal. It can be added to the object under the key "customClass".</td>
	</tr>
	<tr>
		<td><b>allowOutsideClick</b></td>
		<td><i>false</i></td>
		<td>If set to <strong>true</strong>, the user can dismiss the modal by clicking outside it.</td>
	</tr>
	<tr>
		<td><b>showCancelButton</b></td>
		<td><i>false</i></td>
		<td>If set to <strong>true</strong>, a "Cancel"-button will be shown, which the user can click on to dismiss the modal.</td>
	</tr>
	<tr>
		<td><b>showConfirmButton</b></td>
		<td><i>true</i></td>
		<td>If set to <strong>false</strong>, the "OK/Confirm"-button will be hidden. Make sure you set a timer or set allowOutsideClick to true when using this, in order not to annoy the user.</td>
	</tr>
	<tr>
		<td><b>confirmButtonText</b></td>
		<td><i>"OK"</i></td>
		<td>Use this to change the text on the "Confirm"-button. If showCancelButton is set as true, the confirm button will automatically show "Confirm" instead of "OK".</td>
	</tr>
	<tr>
		<td><b>confirmButtonColor</b></td>
		<td><i>"#AEDEF4"</i></td>
		<td>Use this to change the background color of the "Confirm"-button (must be a HEX value).</td>
	</tr>
	<tr>
		<td><b>cancelButtonText</b></td>
		<td><i>"Cancel"</i></td>
		<td>Use this to change the text on the "Cancel"-button.</td>
	</tr>
	<tr>
		<td><b>closeOnConfirm</b></td>
		<td><i>true</i></td>
		<td>Set to <i>false</i> if you want the modal to stay open even if the user presses the "Confirm"-button. This is especially useful if the function attached to the "Confirm"-button is another SweetAlert.</td>
	</tr>
	<tr>
		<td><b>closeOnCancel</b></td>
		<td><i>true</i></td>
		<td>Same as closeOnConfirm, but for the cancel button.</td>
	</tr>
	<tr>
		<td><b>imageUrl</b></td>
		<td><i>null</i></td>
		<td>Add a customized icon for the modal. Should contain a string with the path to the image.</td>
	</tr>
	<tr>
		<td><b>imageSize</b></td>
		<td><i>"80x80"</i></td>
		<td>If imageUrl is set, you can specify imageSize to describes how big you want the icon to be in px. Pass in a string with two values separated by an "x". The first value is the width, the second is the height.</td>
	</tr>
	<tr>
		<td><b>timer</b></td>
		<td><i>null</i></td>
		<td>Auto close timer of the modal. Set in ms (milliseconds).</td>
	</tr>
	<tr>
		<td><b>html</b></td>
		<td><i>false</i></td>
		<td>If set to true, will not escape title and text parameters. (Set to false if you're worried about XSS attacks.)</td>
	</tr>
	<tr>
		<td><b>animation</b></td>
		<td><i>true</i></td>
		<td>If set to <strong>false</strong>, the modal's animation will be disabled. Possible (string) values : <strong>pop</strong> (default when animation set to true), <strong>slide-from-top</strong>, <strong>slide-from-bottom</strong></td>
	</tr>
	<tr>
		<td><b>inputType</b></td>
		<td><i>"text"</i></td>
		<td>Change the type of the input field when using <strong>type: "input"</strong> (this can be useful if you want users to type in their password for example).</td>
	</tr>
	<tr>
		<td><b>inputPlaceholder</b></td>
		<td><i>null</i></td>
		<td>When using the input-type, you can specify a placeholder to help the user.</td>
	</tr>
	<tr>
		<td><b>inputValue</b></td>
		<td><i>null</i></td>
		<td>Specify a default text value that you want your input to show when using <strong>type: "input"</strong></td>
	</tr>
	<tr>
		<td><b>showLoaderOnConfirm</b></td>
		<td><i>false</i></td>
    <td>Set to <strong>true</strong> to disable the buttons and show that something is loading.</td>
	</tr>
</table>


<!-- Methods -->
<h3>Methods</h3>

<p class="center">SweetAlert also comes with some simple methods that you can call:</p>

<table>
	<tr class="titles">
		<th>
			<div class="border-left"></div>
			Function
		</th>
		<th>Example</th>
		<th>
			<div class="border-right"></div>
			Description
		</th>
	</tr>
	<tr>
		<td>setDefaults</td>
		<td><i>swal.setDefaults({ confirmButtonColor: '#0000' });</i></td>
		<td>If you end up using a lot of the same settings when calling SweetAlert, you can use setDefaults at the start of your program to set them once and for all!</td>
	</tr>
	<tr>
		<td>close</td>
		<td><i>swal.close();</i></td>
		<td>Close the currently open SweetAlert programatically.</td>
	</tr>
	<tr>
		<td>showInputError</td>
		<td><i>swal.showInputError("Invalid email!");</i></td>
		<td>Show an error message after validating the input field, if the user's data is bad</td>
	</tr>
	<tr>
		<td>enableButtons, disableButtons</td>
		<td><i>swal.disableButtons();</i></td>
		<td>Disable or enable the user to click on the cancel and confirm buttons.</td>
	</tr>
</table>



<!-- Contribute -->
<h3>Contribute</h3>
<p>SweetAlert was created by <a href="http://tristanedwards.me" target="_blank">Tristan Edwards</a>, you can follow him on <a href="https://twitter.com/t4t5" target="_blank" class="twitter">Twitter</a> or <a href="https://dribbble.com/tristanedwards" target="_blank" class="dribbble">Dribbble</a> for updates and other cool projects!</p>
<p>Feel free to fork SweetAlert on <a href="https://github.com/t4t5/sweetalert" class="github">GitHub</a> if you have any features that you want to add!</p>


<footer>
	<span class="te-logo">TE</span><script>document.write(new Date().getFullYear())</script>
</footer>


<script>

document.querySelector('button.download').onclick = function(){
	$("html, body").animate({ scrollTop: $("#download-section").offset().top }, 1000);
};

document.querySelector('.showcase.normal button').onclick = function(){
	alert("Oops... Something went wrong!");
};

document.querySelector('.showcase.sweet button').onclick = function(){
	swal("Oops...", "Something went wrong!", "error");
};

document.querySelector('ul.examples li.message button').onclick = function(){
	swal("Here's a message!");
};

document.querySelector('ul.examples li.timer button').onclick = function(){
	swal({
		title: "Auto close alert!",
		text: "I will close in 2 seconds.",
		timer: 2000,
		showConfirmButton: false
	});
};

document.querySelector('ul.examples li.title-text button').onclick = function(){
	swal("Here's a message!", "It's pretty, isn't it?");
};

document.querySelector('ul.examples li.success button').onclick = function(){
	swal("Good job!", "You clicked the button!", "success");
};

document.querySelector('ul.examples li.warning.confirm button').onclick = function(){
	swal({
		title: "Are you sure?",
		text: "You will not be able to recover this imaginary file!",
		type: "warning",
		showCancelButton: true,
		confirmButtonColor: '#DD6B55',
		confirmButtonText: 'Yes, delete it!',
		closeOnConfirm: false
	},
	function(){
		swal("Deleted!", "Your imaginary file has been deleted!", "success");
	});
};

document.querySelector('ul.examples li.warning.cancel button').onclick = function(){
	swal({
		title: "Are you sure?",
		text: "You will not be able to recover this imaginary file!",
		type: "warning",
		showCancelButton: true,
		confirmButtonColor: '#DD6B55',
		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('ul.examples li.custom-icon button').onclick = function(){
	swal({
		title: "Sweet!",
		text: "Here's a custom image.",
		imageUrl: 'example/images/thumbs-up.jpg'
	});
};

document.querySelector('ul.examples li.message-html button').onclick = function(){
	swal({
		title: "HTML <small>Title</small>!",
		text: 'A custom <span style="color:#F8BB86">html<span> message.',
		html: true
	});
};

document.querySelector('ul.examples li.input button').onclick = function(){
	swal({
		title: "An input!",
		text: 'Write something interesting:',
		type: 'input',
		showCancelButton: true,
		closeOnConfirm: false,
		animation: "slide-from-top",
		inputPlaceholder: "Write something",
	},
	function(inputValue){
		if (inputValue === false) return false;

		if (inputValue === "") {
			swal.showInputError("You need to write something!");
			return false;
		}
    
		swal("Nice!", 'You wrote: ' + inputValue, "success");

	});
};

document.querySelector('ul.examples li.theme button').onclick = function() {
	swal({
		title: "Themes!",
		text: "Here's the Twitter theme for SweetAlert!",
		confirmButtonText: "Cool!",
		customClass: 'twitter'
	});
};

document.querySelector('ul.examples li.ajax button').onclick = function() {
  swal({
    title: 'Ajax request example',
    text: 'Submit to run ajax request',
    type: 'info',
    showCancelButton: true,
    closeOnConfirm: false,
    showLoaderOnConfirm: true,
  }, function(){
    setTimeout(function() {
      swal('Ajax request finished!');
    }, 2000);
  });
};

</script>



</body>

</html>