From e633dd81ddd3153b7481455f215d91772ff5b34b Mon Sep 17 00:00:00 2001 From: Adam Young Date: Sat, 29 Jan 2011 14:24:00 -0500 Subject: placeholder function ipa_target_section does not overload is_dirty, and it alwayrs returns true, meaning you can never leave the page once you visit it. THis commit pushes a simple placeholder function that always returns fales. Follow on work will be required to correctly inplement the is_dirty functonality --- install/ui/aci.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'install/ui/aci.js') diff --git a/install/ui/aci.js b/install/ui/aci.js index 6f3d218b..959636b8 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -602,6 +602,8 @@ IPA.target_section = function () { record.filter = filter; } }; + that.is_dirty = function (){ return false; } + return that; }; -- cgit