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
/* 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'); | |
}; |
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
/** | |
* 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 : [], |
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
<?php | |
class bootTable { | |
/** | |
* @param array $attributes | |
* @return null|string | |
*/ | |
static function parseAttributes($attributes = array()) | |
{ |
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
<?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'; |
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
@media(max-width:767px){} | |
@media(min-width:768px){} | |
@media(min-width:992px){} | |
@media(min-width:1200px){} |
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
.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; |
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
// 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]') |
NewerOlder