eb0c81f95a
Routing either V1 or V2 using a Facade. By default, V1 is enabled but can be deactivated by a confflag. Pecan controller for Lease created using WSME i/o validation Implements blueprint: pecan-wsme Change-Id: I9047abece78632daa13fdebfea9fb8aaa3c60981
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
/*global $,document*/
|
|
$(document).ready(function () {
|
|
"use strict";
|
|
$("dl.toggle > dt").click(
|
|
function (event) {
|
|
$(this).next().toggle(250);
|
|
}
|
|
);
|
|
}); |