Merge branch 'sprint_220' into sprint/220
This commit is contained in:
@@ -31,5 +31,12 @@ $(function()
|
||||
$('#caseIdList').val(storyIdList);
|
||||
});
|
||||
});
|
||||
|
||||
$('input[name^="showAutoCase"]').click(function()
|
||||
{
|
||||
var showAutoCase = $(this).is(':checked') ? 1 : 0;
|
||||
$.cookie('showAutoCase', showAutoCase, {expires:config.cookieLife, path:config.webRoot});
|
||||
window.location.reload();
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
$(function()
|
||||
{
|
||||
$('input[name^="showAutoCase"]').click(function()
|
||||
{
|
||||
var showAutoCase = $(this).is(':checked') ? 1 : 0;
|
||||
$.cookie('showAutoCase', showAutoCase, {expires:config.cookieLife, path:config.webRoot});
|
||||
window.location.reload();
|
||||
});
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user