This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** test function doSum */ | |
function doSum(a,b){ | |
var result = (a+b) * 3.14; | |
return result; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SweetAlert | |
// 2014 (c) - Tristan Edwards | |
// github.com/t4t5/sweetalert | |
// this is not latest version!!!! | |
(function(window, document) { | |
var modalClass = '.sweet-alert', | |
overlayClass = '.sweet-overlay', | |
alertTypes = ['error', 'warning', 'info', 'success'], | |
defaultParams = { |
NewerOlder