Fixed navigation buttons for HBAC Test.

The Back, Next, and New Test buttons in HBAC Test have been fixed
to work properly.

Ticket #388
This commit is contained in:
Endi Sukma Dewata
2011-11-21 16:43:52 -06:00
committed by Endi S. Dewata
parent d040b93e38
commit 9276e51bce
6 changed files with 137 additions and 34 deletions

View File

@@ -702,6 +702,18 @@ IPA.facet_group = function(spec) {
return that.facets.get(name);
};
that.get_facet_index = function(name) {
return that.facets.get_key_index(name);
};
that.get_facet_by_index = function(index) {
return that.facets.get_value_by_index(index);
};
that.get_facet_count = function(index) {
return that.facets.length;
};
return that;
};