Skip to content

Instantly share code, notes, and snippets.

View maneja81's full-sized avatar
💭
eat; sleep; code; repeat;

Mohit Aneja maneja81

💭
eat; sleep; code; repeat;
View GitHub Profile
@fannheyward
fannheyward / gist:7560525
Created November 20, 2013 09:47
prettyphoto directive for Angular.
.directive('prettyp', function(){
return function(scope, element, attrs) {
$("[rel^='prettyPhoto']").prettyPhoto({deeplinking: false, social_tools: false});
}
})