Quick uninstall JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | bash -s
Quick uninstall JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | bash -s
| /* Create the sweetAlert Service singleton */ | |
| function sweetAlertService() { | |
| this.success = function(title, message) { | |
| swal(title, message,'success'); | |
| }; | |
| this.error = function(title, message) { | |
| swal(title, message,'error'); | |
| }; |
| /** | |
| * Original by Zirak @ http://stackoverflow.com/a/8636050/1012431 | |
| * | |
| * Had some issues with the clear function | |
| * | |
| * @type {{intervals: Array, make: make, clear: clear, clearAll: clearAll}} | |
| */ | |
| var interval = { | |
| //to keep a reference to all the intervals | |
| intervals : [], |
| <?php | |
| class bootTable { | |
| /** | |
| * @param array $attributes | |
| * @return null|string | |
| */ | |
| static function parseAttributes($attributes = array()) | |
| { |
| <?php | |
| $icon[] = 'fa-glass'; | |
| $icon[] = 'fa-music'; | |
| $icon[] = 'fa-search'; | |
| $icon[] = 'fa-envelope-o'; | |
| $icon[] = 'fa-heart'; | |
| $icon[] = 'fa-star'; | |
| $icon[] = 'fa-star-o'; | |
| $icon[] = 'fa-user'; |
| @media(max-width:767px){} | |
| @media(min-width:768px){} | |
| @media(min-width:992px){} | |
| @media(min-width:1200px){} |
| .vertical .carousel-inner { | |
| height: 100%; | |
| } | |
| .carousel.vertical .item { | |
| -webkit-transition: 0.6s ease-in-out top; | |
| -moz-transition: 0.6s ease-in-out top; | |
| -ms-transition: 0.6s ease-in-out top; | |
| -o-transition: 0.6s ease-in-out top; | |
| transition: 0.6s ease-in-out top; |
| // Released under MIT license: http://www.opensource.org/licenses/mit-license.php | |
| placeholderSupport = ("placeholder" in document.createElement("input")); | |
| if (!placeholderSupport) { | |
| (function ($) { | |
| 'use strict'; | |
| $(function () { | |
| $('[placeholder]') |