diff --git a/public/js/directives/directives.js b/public/js/directives/directives.js index 7a8e9d71fd..0f5f9756c0 100644 --- a/public/js/directives/directives.js +++ b/public/js/directives/directives.js @@ -120,14 +120,3 @@ habitrpg.directive('fromNow', ['$interval', function($interval){ }); } }]); - -habitrpg.directive('questRewards', ['$rootScope', function($rootScope){ - return { - restrict: 'AE', - templateUrl: 'partials/options.social.party.quest-rewards.html', - link: function(scope, element, attrs){ - scope.header = attrs.header || 'Rewards'; - scope.quest = $rootScope.Content.quests[attrs.key]; - } - } -}])