Added alplora and datacenter beta program

This commit is contained in:
Levi 2017-02-14 23:34:06 -05:00
commit ea2f6444db
152 changed files with 20967 additions and 160 deletions

View file

@ -0,0 +1,18 @@
$( document ).ready(function() {
$('#confirm-cancel').on('click', '.btn-ok', function(e) {
$('#virtual_machine_cancel_form').trigger('submit');
});
var hash = window.location.hash;
hash && $('ul.nav a[href="' + hash + '"]').tab('show');
$('.nav-tabs a').click(function (e) {
$(this).tab('show');
var scrollmem = $('body').scrollTop() || $('html').scrollTop();
window.location.hash = this.hash;
$('html,body').scrollTop(scrollmem);
});
});