2012-02-08 14:01:00 +00:00
|
|
|
//= require jquery
|
|
|
|
//= require jquery_ujs
|
|
|
|
//= require jquery-ui
|
|
|
|
//= require autocomplete-rails
|
|
|
|
//= require vendor
|
|
|
|
//= require_tree .
|
2012-02-27 17:40:46 +00:00
|
|
|
//
|
2012-02-16 23:07:22 +00:00
|
|
|
// require_self
|
2012-02-08 14:01:00 +00:00
|
|
|
|
|
|
|
// function disableNotifierCbx(global_cbx) {
|
|
|
|
// if ($(global_cbx).attr('checked')) {
|
|
|
|
// $('.notify_cbx').removeAttr('disabled');
|
|
|
|
// $('.notify_cbx').each(function(i,el) { $(el).prev().removeAttr('disabled'); })
|
|
|
|
// } else {
|
|
|
|
// $('.notify_cbx').attr('disabled', 'disabled');
|
|
|
|
// $('.notify_cbx').each(function(i,el) { $(el).prev().attr('disabled', 'disabled'); })
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// $(document).ready(function() {
|
2012-02-16 23:07:22 +00:00
|
|
|
// $('select#build_list_pl_id').change(function() {
|
|
|
|
// var platform_id = $(this).val();
|
|
|
|
// var base_platforms = $('.base_platforms input[type=checkbox]');
|
|
|
|
//
|
|
|
|
// $('#include_repos').html($('.preloaded_include_repos .include_repos_' + platform_id).html());
|
|
|
|
//
|
|
|
|
// base_platforms.each(function(){
|
|
|
|
// if ($.inArray(platform_id, base_platforms.map(function(){ return $(this).val() }).get()) >= 0) {
|
|
|
|
// if ($(this).val() == platform_id) {
|
|
|
|
// $(this).attr('checked', 'checked');
|
|
|
|
// $(this).removeAttr('disabled');
|
|
|
|
// } else {
|
|
|
|
// $(this).removeAttr('checked');
|
|
|
|
// $(this).attr('disabled', 'disabled');
|
|
|
|
// }
|
|
|
|
// } else {
|
|
|
|
// $(this).removeAttr('disabled');
|
|
|
|
// }
|
|
|
|
// });
|
2012-02-08 14:01:00 +00:00
|
|
|
// });
|
2012-02-16 23:07:22 +00:00
|
|
|
// $('select#build_list_pl_id').trigger('change');
|
2012-02-08 14:01:00 +00:00
|
|
|
//
|
2012-02-16 23:07:22 +00:00
|
|
|
// $('input.user_role_chbx').click(function() {
|
|
|
|
// var current = $(this);
|
|
|
|
// current.parent().find('input.user_role_chbx').each(function(i,el) {
|
|
|
|
// if ($(el).attr('id') != current.attr('id')) {
|
|
|
|
// $(el).removeAttr('checked');
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
// });
|
2012-02-08 14:01:00 +00:00
|
|
|
//
|
2012-02-16 23:07:22 +00:00
|
|
|
// $('#settings_notifier_can_notify').click(function() {
|
|
|
|
// disableNotifierCbx($(this));
|
|
|
|
// });
|
|
|
|
//
|
|
|
|
// $('div.information > div.user').live('click', function() {
|
|
|
|
// droplist();
|
|
|
|
// });
|
|
|
|
//
|
|
|
|
// $('div.information > div.profile > a').live('click', function(e) {
|
|
|
|
// e.preventDefault();
|
|
|
|
// });
|
|
|
|
//
|
2012-02-08 14:01:00 +00:00
|
|
|
// });
|