summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2011-10-30 18:36:35 +0000
committerfisharebest <fisharebest@gmail.com>2011-10-30 18:36:35 +0000
commitbec1a42156ec1d1c83895e9822dd0b204ec892eb (patch)
treeccc2a64ba0ae7196311db4a4d1a1f9057867c5b2 /includes
parent921d9683c287fe6dbc51122020886c390bc2bfa7 (diff)
downloadwebtrees-bec1a42156ec1d1c83895e9822dd0b204ec892eb.tar.gz
webtrees-bec1a42156ec1d1c83895e9822dd0b204ec892eb.tar.bz2
webtrees-bec1a42156ec1d1c83895e9822dd0b204ec892eb.zip
Remove overlib.js and behaviour.js - these are no longer used.
Diffstat (limited to 'includes')
-rw-r--r--includes/functions/functions_print.php3
-rw-r--r--includes/functions/functions_print_lists.php13
2 files changed, 0 insertions, 16 deletions
diff --git a/includes/functions/functions_print.php b/includes/functions/functions_print.php
index 54f4814b5a..2ca1df2265 100644
--- a/includes/functions/functions_print.php
+++ b/includes/functions/functions_print.php
@@ -438,9 +438,6 @@ function print_footer($view='full') {
else $footer_count++;
echo "<!-- begin footer -->";
require WT_ROOT.$footerfile;
- if (function_exists("load_behaviour")) {
- load_behaviour(); // @see function_print_lists.php
- }
} else {
if (WT_DEBUG || get_gedcom_setting(WT_GED_ID, 'SHOW_STATS')) {
echo execution_stats();
diff --git a/includes/functions/functions_print_lists.php b/includes/functions/functions_print_lists.php
index 367543ae24..9d6a4ac0df 100644
--- a/includes/functions/functions_print_lists.php
+++ b/includes/functions/functions_print_lists.php
@@ -2201,16 +2201,3 @@ function get_align($txt) {
if ($TEXT_DIRECTION=="rtl") return "right";
return "left";
}
-
-/**
- * load behaviour js data
- * to be called at the end just before </body> tag
- *
- * @see http://bennolan.com/behaviour/
- * @param none
- */
-function load_behaviour() {
- require_once WT_ROOT.'js/prototype.js.htm';
- require_once WT_ROOT.'js/behaviour.js.htm';
- require_once WT_ROOT.'js/overlib.js.htm';
-}