2013-06-27 08:01:06 +00:00
|
|
|
(function () {
|
2013-03-10 08:00:41 +00:00
|
|
|
$(document).ready(function () {
|
|
|
|
// Upload button is clicked
|
|
|
|
$("#post").click(function(e) {
|
2013-04-30 18:18:07 +00:00
|
|
|
// Make sure "Music" category is selected.
|
|
|
|
if ($("#categories").find(":selected").val() == 0) {
|
|
|
|
checkHasMainArtist(e);
|
2013-03-10 08:00:41 +00:00
|
|
|
}
|
|
|
|
});
|
2013-04-02 08:00:31 +00:00
|
|
|
|
2013-03-10 08:00:41 +00:00
|
|
|
/**
|
|
|
|
* Make sure a main artist is selected.
|
|
|
|
*/
|
|
|
|
function checkHasMainArtist(e) {
|
|
|
|
var has_main = false;
|
|
|
|
$("select[id^=importance]").each(function() {
|
2013-04-30 18:18:07 +00:00
|
|
|
if ($(this).find(":selected").val() == 1) {
|
2013-03-10 08:00:41 +00:00
|
|
|
has_main = true;
|
|
|
|
}
|
|
|
|
});
|
2013-04-30 18:18:07 +00:00
|
|
|
if (!has_main) {
|
2013-03-10 08:00:41 +00:00
|
|
|
alert('A "Main" artist is required');
|
|
|
|
// Don't POST the form.
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2013-06-27 08:01:06 +00:00
|
|
|
})();
|