Skip to Content.
Sympa Menu

comanage-dev - [comanage-dev] r605 - in registry/trunk/app/View: CmpEnrollmentConfigurations CoEnrollmentAttributes

Subject: COmanage Developers List

List archive

[comanage-dev] r605 - in registry/trunk/app/View: CmpEnrollmentConfigurations CoEnrollmentAttributes


Chronological Thread 
  • From:
  • To:
  • Subject: [comanage-dev] r605 - in registry/trunk/app/View: CmpEnrollmentConfigurations CoEnrollmentAttributes
  • Date: Tue, 17 Sep 2013 23:19:13 -0400

Author: benno
Date: 2013-09-17 23:19:13 -0400 (Tue, 17 Sep 2013)
New Revision: 605

Modified:
registry/trunk/app/View/CmpEnrollmentConfigurations/fields.inc
registry/trunk/app/View/CoEnrollmentAttributes/fields.inc
Log:
Standardize jquery effects to use fade (CO-694)

Modified: registry/trunk/app/View/CmpEnrollmentConfigurations/fields.inc
===================================================================
--- registry/trunk/app/View/CmpEnrollmentConfigurations/fields.inc
2013-09-17 23:46:23 UTC (rev 604)
+++ registry/trunk/app/View/CmpEnrollmentConfigurations/fields.inc
2013-09-18 03:19:13 UTC (rev 605)
@@ -78,18 +78,18 @@

// Show the attribute fields, if appropriate

if(document.getElementById('CmpEnrollmentConfigurationAttrsFromEnv').checked)
{
- $("#org_attributes").show('blind');
+ $("#org_attributes").show('fade');
} else {
- $("#org_attributes").hide('blind');
+ $("#org_attributes").hide('fade');
}


if(document.getElementById('CmpEnrollmentConfigurationAttrsFromCoef').checked)
{
// Required vs optional is set in the enrollment flow
- $("#edit_cmp_enrollment_attributes td:nth-child(2)").hide('slide');
- $("#edit_cmp_enrollment_attributes th:nth-child(2)").hide('slide');
+ $("#edit_cmp_enrollment_attributes td:nth-child(2)").hide('fade');
+ $("#edit_cmp_enrollment_attributes th:nth-child(2)").hide('fade');
} else {
- $("#edit_cmp_enrollment_attributes td:nth-child(2)").show('slide');
- $("#edit_cmp_enrollment_attributes th:nth-child(2)").show('slide');
+ $("#edit_cmp_enrollment_attributes td:nth-child(2)").show('fade');
+ $("#edit_cmp_enrollment_attributes th:nth-child(2)").show('fade');
}

// Make LDAP and SAML attribute colums match the master settings

Modified: registry/trunk/app/View/CoEnrollmentAttributes/fields.inc
===================================================================
--- registry/trunk/app/View/CoEnrollmentAttributes/fields.inc 2013-09-17
23:46:23 UTC (rev 604)
+++ registry/trunk/app/View/CoEnrollmentAttributes/fields.inc 2013-09-18
03:19:13 UTC (rev 605)
@@ -72,7 +72,7 @@
var attrtype = curattr[0];

if(attrtype == "r" || attrtype == "o" || attrtype == "x" || attrtype ==
"g") {
- $("#attr_def_div").show("slide", { "direction" : "up" });
+ $("#attr_def_div").show("fade", { "direction" : "up" });

// Adjust the gadgets shown

@@ -136,7 +136,7 @@
$("#attr_def_val_div").show();
}
} else {
- $("#attr_def_div").hide("slide", { "direction" : "up" });
+ $("#attr_def_div").hide("fade", { "direction" : "up" });
}
}




  • [comanage-dev] r605 - in registry/trunk/app/View: CmpEnrollmentConfigurations CoEnrollmentAttributes, svnlog, 09/17/2013

Archive powered by MHonArc 2.6.16.

Top of Page