Skip to content
Snippets Groups Projects
Commit cb5424b0 authored by Demian Katz's avatar Demian Katz
Browse files

Style fixes.

parent c4db5468
No related merge requests found
//this overrides settings in jquery.tabSlideOut.v2.0.js /*global alert, path, tabImage*/
// This overrides settings in jquery.tabSlideOut.v2.0.js
$(function(){ $(function(){
$('.slide-out-div').tabSlideOut({ $('.slide-out-div').tabSlideOut({
pathToTabImage: tabImage, pathToTabImage: tabImage,
...@@ -10,7 +12,7 @@ $(function(){ ...@@ -10,7 +12,7 @@ $(function(){
}); });
}); });
//This is the ajax for the feedback // This is the ajax for the feedback
$(function() { $(function() {
$('.error').hide(); $('.error').hide();
$("div#slideOut").removeClass('slideOutForm'); $("div#slideOut").removeClass('slideOutForm');
...@@ -58,7 +60,7 @@ $(function() { ...@@ -58,7 +60,7 @@ $(function() {
var dataString = 'name='+ encodeURIComponent(name) + '&email=' var dataString = 'name='+ encodeURIComponent(name) + '&email='
+ encodeURIComponent(email) + '&comments=' + encodeURIComponent(comments); + encodeURIComponent(email) + '&comments=' + encodeURIComponent(comments);
//Grabs hidden inputs // Grabs hidden inputs
var formSuccess = $("input#formSuccess").val(); var formSuccess = $("input#formSuccess").val();
var feedbackSuccess = $("input#feedbackSuccess").val(); var feedbackSuccess = $("input#feedbackSuccess").val();
var feedbackFailure = $("input#feedbackFailure").val(); var feedbackFailure = $("input#feedbackFailure").val();
...@@ -73,7 +75,7 @@ $(function() { ...@@ -73,7 +75,7 @@ $(function() {
.append("<p>"+feedbackSuccess+"</p>") .append("<p>"+feedbackSuccess+"</p>")
.hide() .hide()
.fadeIn(1500, function() { .fadeIn(1500, function() {
$('#message') $('#message');
}); });
}, },
error: function() { error: function() {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment