Skip to content

Instantly share code, notes, and snippets.

View lennymorandin's full-sized avatar

Lenny lennymorandin

  • H-art
  • Venice, Italy
View GitHub Profile
@lennymorandin
lennymorandin / share_functions
Created July 3, 2014 13:29
share functions
$('#socialbar ul a.fb, div.social-widget ul a.fb').on('click', function(evt) {
evt.preventDefault();
var loc = window.location.href;
var title = escape($('meta[name="twitter:title"]').attr('content'));
var pos = '';
if (viewportWidth() > 768) {
pos = 'top=' + ($(window).height() / 2 - 225) + ', left=' + viewportWidth() / 2 + '';
}
else {
pos = 'top=0, left=0';
@lennymorandin
lennymorandin / gist:3780951
Created September 25, 2012 09:50
Smammas blog htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule ^assets/css/(.*) /wp-content/themes/smammas/assets/css/$1 [QSA,L]
RewriteRule ^assets/js/(.*) /wp-content/themes/smammas/assets/js/$1 [QSA,L]
RewriteRule ^assets/img/(.*) /wp-content/themes/smammas/assets/img/$1 [QSA,L]
RewriteRule ^assets/font/(.*) /wp-content/themes/smammas/assets/font/$1 [QSA,L]