2cc46f5886
Simplified ui for linux snapshots Change-Id: I18c6350a217327c6fe924373ab104441cf82dc0c
71 lines
1.7 KiB
JavaScript
71 lines
1.7 KiB
JavaScript
/*
|
|
# (c) Copyright 2014,2015 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
*/
|
|
|
|
/*global $*/
|
|
|
|
"use strict";
|
|
|
|
function hideOptions() {
|
|
// Snapshot specific controls
|
|
$("#id_is_windows").closest(".form-group").hide();
|
|
$("#id_is_linux").closest(".form-group").hide();
|
|
}
|
|
|
|
function is_windows() {
|
|
if ($("#id_is_windows").is(":checked")) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
function showWindowsSnapshotOptions() {
|
|
$("#id_vssadmin").closest(".form-group").show();
|
|
}
|
|
|
|
function hideWindowsSnapshotOptions() {
|
|
$("#id_vssadmin").closest(".form-group").hide();
|
|
}
|
|
|
|
|
|
function hideSnapshotOptions() {
|
|
$("#id_is_windows").closest(".form-group").hide();
|
|
}
|
|
|
|
function showSnapshotOptions() {
|
|
$("#id_is_windows").closest(".form-group").show();
|
|
if (is_windows()) {
|
|
showWindowsSnapshotOptions();
|
|
} else {
|
|
}
|
|
}
|
|
|
|
hideOptions();
|
|
|
|
$("#id_use_snapshot").click(function () {
|
|
if ($("#id_use_snapshot").is(":checked")) {
|
|
showSnapshotOptions();
|
|
} else {
|
|
hideSnapshotOptions();
|
|
}
|
|
});
|
|
|
|
$("#id_is_windows").click(function () {
|
|
if ($("#id_use_snapshot").is(":checked")) {
|
|
showSnapshotOptions();
|
|
} else {
|
|
hideSnapshotOptions();
|
|
}
|
|
});
|