Skip to content

Instantly share code, notes, and snippets.

View akizor's full-sized avatar
🎯
Focusing

Daniel Placinta akizor

🎯
Focusing
  • Bucharest, Romania
View GitHub Profile
@akizor
akizor / ro_slugs.php
Last active August 29, 2015 14:15 — forked from samatsav/ro_slugs.php
function ro_slugs($cuvant) {
$slug = trim(strtolower(stripslashes($cuvant)));
$map = array(
'/à|á|å|â|ă|â|Â|Ă|ă/i' => 'a',
'/è|é|ê|ẽ|ë/i' => 'e',
'/ì|í|î|î|Î|Î/i' => 'i',
'/ò|ó|ô|ø/i' => 'o',
'/ù|ú|ů|û/i' => 'u',
'/ș|ș|ş|Ș|Ș|Ş/i'=>'s',
'/ț|ţ|ț|Ț|Ţ/i'=>'t',
//Add Hover effect to menus
jQuery('ul.nav li.dropdown').hover(function() {
jQuery(this).find('.dropdown-menu').stop(true, true).delay(200).fadeIn();
}, function() {
jQuery(this).find('.dropdown-menu').stop(true, true).delay(200).fadeOut();
});
@akizor
akizor / app.css
Last active August 29, 2015 14:06 — forked from runzway/app.css
.ng-modal-overlay {
position:absolute;
z-index:9999;
top:0;
left:0;
width:100%;
height:100%;
background-color:#000;
opacity: 0.8;
}