Initial commit

This commit is contained in:
zhugl
2015-07-30 13:01:42 +08:00
commit dfe9774fb1
122 changed files with 12088 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
/**
author:zhugl
date:2015-05-15
*/
(function($) {
$(document).ready(function() {
/**
set operation type
*/
$("fieldset.workflow input[type='radio']").on('click',function(){
operation = $(this).val();
next = "approve/"+operation;
$("#workflow_approve").attr("href",next);
});
try{
$("div.inline-group table tbody tr.form-row").removeClass('has_original');
$("div.inline-group table tbody tr.form-row td:first-child").find('p').hide();
}catch(e){
}
});
})(django.jQuery);