-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_detail.html
95 lines (58 loc) · 3.03 KB
/
project_detail.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<div class="wrapper wrapper-content project-manager">
<h4>Project description</h4>
<img src="img/zender_logo.png" class="img-fluid">
<p class="small">
There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look
even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing
</p>
<p class="small font-bold">
<span><i class="fa fa-circle text-warning"></i> High priority</span>
</p>
<h5>Project tag</h5>
<ul class="tag-list" style="padding: 0">
<li><a href=""><i class="fa fa-tag"></i> Zender</a></li>
<li><a href=""><i class="fa fa-tag"></i> Lorem ipsum</a></li>
<li><a href=""><i class="fa fa-tag"></i> Passages</a></li>
<li><a href=""><i class="fa fa-tag"></i> Variations</a></li>
</ul>
<h5>Project files</h5>
<ul class="list-unstyled project-files">
<li><a href=""><i class="fa fa-file"></i> Project_document.docx</a></li>
<li><a href=""><i class="fa fa-file-picture-o"></i> Logo_zender_company.jpg</a></li>
<li><a href=""><i class="fa fa-stack-exchange"></i> Email_from_Alex.mln</a></li>
<li><a href=""><i class="fa fa-file"></i> Contract_20_11_2014.docx</a></li>
</ul>
<div class="text-center m-t-md">
<a href="#" class="btn btn-xs btn-primary">Add files</a>
<a href="#" class="btn btn-xs btn-primary">Report contact</a>
</div>
</div>
</div>
</div>
<!-- Mainly scripts -->
<!-- Custom and plugin javascript -->
<script src="js/common.js"></script>
<script>
$(document).ready(function(){
$('#loading-example-btn').click(function () {
btn = $(this);
simpleLoad(btn, true)
// Ajax example
// $.ajax().always(function () {
// simpleLoad($(this), false)
// });
simpleLoad(btn, false)
});
});
function simpleLoad(btn, state) {
if (state) {
btn.children().addClass('fa-spin');
btn.contents().last().replaceWith(" Loading");
} else {
setTimeout(function () {
btn.children().removeClass('fa-spin');
btn.contents().last().replaceWith(" Refresh");
}, 2000);
}
}
</script>