diff options
author | Adam Young <ayoung@redhat.com> | 2011-01-29 14:24:00 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-01-29 14:24:00 -0500 |
commit | e633dd81ddd3153b7481455f215d91772ff5b34b (patch) | |
tree | 09d21d41bd7538fe93600f422567df0eea9d57c6 | |
parent | e806f32caeb517b12154bc1c02b8ad55b5b40f2d (diff) | |
download | freeipa-e633dd81ddd3153b7481455f215d91772ff5b34b.tar.gz freeipa-e633dd81ddd3153b7481455f215d91772ff5b34b.tar.xz freeipa-e633dd81ddd3153b7481455f215d91772ff5b34b.zip |
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
-rw-r--r-- | install/ui/aci.js | 2 |
1 files changed, 2 insertions, 0 deletions
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; }; |