openstackweb/themes/openstack/javascript/speaker-submissions.js
2014-10-31 16:59:18 -03:00

68 lines
2.3 KiB
JavaScript

/**
* Copyright 2014 Openstack Foundation
* 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.
**/
jQuery(document).ready(function($) {
// Add star ratings to each submission
$('.rating').each(function() {
var submission = $(this).closest('div .submission').attr('id');
var previousRating = $("input[id=" + submission + "]").val();
$(this).raty({
number: 3,
cancel: true,
cancelOn: 'undo.gif',
cancelOff: 'undo.gif',
cancelPlace: 'right',
start: previousRating,
path: '/themes/openstack/javascript/jquery.raty-2.1.0/img/',
hintList: ['maybe', 'want to see', 'must-see'],
click: function(score, evt) {
$.ajax({
type: 'POST',
url: '/conference/san-francisco-2012/speaker-submissions/saverating/',
data: {'score':score, 'submission':submission},
success: function(data){ $("div.saved-rating#saved" + submission).show().animate({opacity: 1.0}, 1000).fadeOut(500); }
})
}
});
});
//hide comment boxes
$('.commentArea').hide();
// toggles comment area
$('a.toggleCommentArea').click(function() {
$(this).closest('div.submission').find('div.commentArea').slideToggle(400);
return false;
});
$('.commentSubmitButton').each(function() {
$(this).click(function() {
var submission = $(this).closest('div .submission').attr('id');
var comment = document.getElementById('comment' + submission).value;
$.ajax({
type: 'POST',
url: '/conference/san-francisco-2012/speaker-submissions/savecomment/',
data: {'comment':comment, 'submission':submission},
success: function(data){ $("div.saved-rating#saved" + submission).show().animate({opacity: 1.0}, 1000).fadeOut(500); }
})
return false; // prevent normal submit
});
});
});