-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.81 KB
/
index.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
<!doctype html>
<html ng-app="project">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular-resource.min.js"></script>
<script src="project.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/docs.css">
<link rel="stylesheet" href="css/font-awesome.css">
</head>
<body style="width:600px;margin:auto;">
<div id="content" style="padding:5px;background-color:#efefef;">
<div style="background-color:#dfdfdf">
<h2>AngularJS - JavaScript Projects</h2>
<div ng-view></div>
</div>
<p>
<div>
<b>The Ask</b>
<ol>
<li> Add a new field to the model called author
<li> Add a new field to the model called file size
<li> Add a new field to the model called creation date
<li> Make the column headings clickable and clicking them should cycle
through sorting by ascending, descending and no order
<li> Add a search row below the heading row, each column contains a search
field. Entering a value in the search field should filter data only based on
values in that column (unlike the search above the table which filters
based on data in any field)
<li> Add another action next to the pencil icon on each row to delete the
record
</ol>
You must attempt one of the following two. For experienced developers interested in senior positions, both are required.
<ol>
<li> Add a cart area and provide the ability to drag and drop the libraries
into this cart. The cart should display each library as a cart item with
name and file size. Below the cart, the total file size should be
displayed
<li> Integrate with any charting/visualization library and present the data
either based on creation date or file size. Any other visualizations are
welcome
</ol>
</div>
</div>
</body>
</html>