annotate plugins/redmine_bibliography/lib/bibliography/projects_helper_patch.rb @ 1391:8580d1d1150e luisf

Adding 2 new js scripts; added the code removed from the partials. Minor cleaning.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 25 Sep 2013 17:44:48 +0100
parents b4b72f1eb644
children
rev   line source
luis@1070 1 module Bibliography
luis@1070 2 module ProjectsHelperPatch
luis@1070 3
luis@1070 4 def self.included(base) # :nodoc:
luis@1070 5 base.send(:include, InstanceMethods)
luis@1070 6 base.send(:include, PublicationsHelper)
luis@1070 7
luis@1070 8 base.class_eval do
luis@1070 9 unloadable
luis@1070 10 end
luis@1070 11 end
luis@1070 12
luis@1070 13 module InstanceMethods
luis@1070 14 end
luis@1070 15 end
luis@1070 16 end
luis@1070 17