Merge branch 'master' of github.com:hashicorp/terraform

This commit is contained in:
JT
2014-07-28 00:08:22 -07:00
16 changed files with 650 additions and 11 deletions

View File

@@ -6,6 +6,7 @@ Engine.Typewriter = function(element){
this.element = element;
this.content = this.element.textContent.split('');
this.element.innerHTML = '';
this.element.style.visibility = 'visible';
};
Engine.Typewriter.prototype = {

View File

@@ -93,12 +93,9 @@ Engine = Base.extend({
.then(function(){
this.showShapes = true;
}, this)
.wait(800)
.wait(1000)
.then(function(){
this.logo.startBreathing();
}, this)
.wait(200)
.then(function(){
this.showGrid = true;
}, this)
.wait(1000)

View File

@@ -66,10 +66,9 @@ var Init = {
Pages: {
'page-home': function(){
var jumbotron;
if (isIE) {
jumbotron = document.getElementById('jumbotron');
jumbotron.className += ' static';
document.getElementById('jumbotron').className += ' static';
document.getElementById('tag-line').style.visibility = 'visible';
return;
}