8e266c3193
Fix #6191 * fix issue update race condition * fix similar race same race when clearing assignee * always load promise polyfill * replace es6-promise with promise-polyfill * move promise-polyfill to <head>
133 lines
4.2 KiB
Cheetah
133 lines
4.2 KiB
Cheetah
{{/*
|
|
<html>
|
|
<body>
|
|
<div>
|
|
*/}}
|
|
|
|
{{template "custom/body_inner_post" .}}
|
|
|
|
</div>
|
|
|
|
{{template "custom/body_outer_post" .}}
|
|
|
|
{{template "base/footer_content" .}}
|
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/jquery/jquery.min.js"></script>
|
|
<script src="{{AppSubUrl}}/vendor/plugins/jquery.areyousure/jquery.are-you-sure.js"></script>
|
|
{{if .RequireSimpleMDE}}
|
|
<script src="{{AppSubUrl}}/vendor/plugins/simplemde/simplemde.min.js"></script>
|
|
<script src="{{AppSubUrl}}/vendor/plugins/codemirror/addon/mode/loadmode.js"></script>
|
|
<script src="{{AppSubUrl}}/vendor/plugins/codemirror/mode/meta.js"></script>
|
|
<script>
|
|
CodeMirror.modeURL = "{{AppSubUrl}}/vendor/plugins/codemirror/mode/%N/%N.js";
|
|
</script>
|
|
{{end}}
|
|
{{if .RequireGitGraph}}
|
|
<!-- graph -->
|
|
<script src="{{AppSubUrl}}/vendor/plugins/gitgraph/gitgraph.js"></script>
|
|
<script src="{{AppSubUrl}}/js/draw.js"></script>
|
|
{{end}}
|
|
|
|
<!-- Third-party libraries -->
|
|
{{if .RequireHighlightJS}}
|
|
<script src="{{AppSubUrl}}/vendor/plugins/highlight/highlight.pack.js"></script>
|
|
{{end}}
|
|
{{if .RequireMinicolors}}
|
|
<script src="{{AppSubUrl}}/vendor/plugins/jquery.minicolors/jquery.minicolors.min.js"></script>
|
|
{{end}}
|
|
{{if .RequireDatetimepicker}}
|
|
<script src="{{AppSubUrl}}/vendor/plugins/jquery.datetimepicker/jquery.datetimepicker.js"></script>
|
|
{{end}}
|
|
{{if .RequireDropzone}}
|
|
<script src="{{AppSubUrl}}/vendor/plugins/dropzone/dropzone.js"></script>
|
|
{{end}}
|
|
{{if .RequireU2F}}
|
|
<script src="{{AppSubUrl}}/vendor/plugins/u2f/index.js"></script>
|
|
{{end}}
|
|
{{if .EnableCaptcha}}
|
|
{{if eq .CaptchaType "recaptcha"}}
|
|
<script src="https://www.google.com/recaptcha/api.js" async></script>
|
|
{{end}}
|
|
{{end}}
|
|
{{if .RequireTribute}}
|
|
<script src="{{AppSubUrl}}/vendor/plugins/tribute/tribute.min.js"></script>
|
|
<script>
|
|
var issuesTribute = new Tribute({
|
|
values: [
|
|
{{ range .Assignees }}
|
|
{key: '{{.Name}} {{.FullName}}', value: '{{.Name}}',
|
|
name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.RelAvatarLink}}'},
|
|
{{ end }}
|
|
],
|
|
noMatchTemplate: function () { return null },
|
|
menuItemTemplate: function (item) {
|
|
var user = item.original;
|
|
var itemStr = '<img src="' + user.avatar + '"/><span class="name">' + user.name + '</span>';
|
|
if (user.fullname && user.fullname != '') {
|
|
itemStr += '<span class="fullname">' + user.fullname + '</span>';
|
|
}
|
|
return itemStr;
|
|
}
|
|
});
|
|
var content = document.getElementById('content');
|
|
if (content != null) {
|
|
issuesTribute.attach(content);
|
|
}
|
|
</script>
|
|
<script>
|
|
var emojiTribute = new Tribute({
|
|
collection: [{
|
|
trigger: ':',
|
|
requireLeadingSpace: true,
|
|
values: function (text, cb) {
|
|
var array = emojify.emojiNames;
|
|
var data = [];
|
|
for(var j=0; j<array.length; j++) {
|
|
if(array[j].indexOf(text) !== -1) {
|
|
data.push(array[j]);
|
|
if(data.length > 5) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
cb(data);
|
|
},
|
|
lookup: function (item) {
|
|
return item;
|
|
},
|
|
selectTemplate: function (item) {
|
|
if (typeof item === 'undefined') return null;
|
|
return ':' + item.original + ':';
|
|
},
|
|
menuItemTemplate: function (item) {
|
|
return '<img class="emoji" src="{{AppSubUrl}}/vendor/plugins/emojify/images/' + item.original + '.png"/>' + item.original;
|
|
}
|
|
}]
|
|
});
|
|
var emojiInputs = document.querySelectorAll('.emoji-input');
|
|
if (emojiInputs.length > 0) {
|
|
emojiTribute.attach(emojiInputs);
|
|
}
|
|
var content = document.getElementById('content');
|
|
if (content != null) {
|
|
emojiTribute.attach(document.getElementById('content'));
|
|
}
|
|
</script>
|
|
{{end}}
|
|
<script src="{{AppSubUrl}}/vendor/plugins/emojify/emojify.min.js"></script>
|
|
<script src="{{AppSubUrl}}/vendor/plugins/clipboard/clipboard.min.js"></script>
|
|
<script src="{{AppSubUrl}}/vendor/plugins/vue/vue.min.js"></script>
|
|
|
|
<!-- JavaScript -->
|
|
<script src="{{AppSubUrl}}/vendor/plugins/semantic/semantic.min.js"></script>
|
|
<script src="{{AppSubUrl}}/js/index.js?v={{MD5 AppVer}}"></script>
|
|
{{if .EnableHeatmap}}
|
|
<script src="{{AppSubUrl}}/vendor/plugins/moment/moment.min.js" charset="utf-8"></script>
|
|
<script src="{{AppSubUrl}}/vendor/plugins/vue-calendar-heatmap/vue-calendar-heatmap.browser.js" charset="utf-8"></script>
|
|
<script type="text/javascript">
|
|
initHeatmap('user-heatmap', '{{.HeatmapUser}}');
|
|
</script>
|
|
{{end}}
|
|
{{template "custom/footer" .}}
|
|
</body>
|
|
</html>
|