Latest updates from IceHrmPro
This commit is contained in:
2
web/node_modules/component-indexof/.npmignore
generated
vendored
Normal file
2
web/node_modules/component-indexof/.npmignore
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
components
|
||||
build
|
||||
19
web/node_modules/component-indexof/History.md
generated
vendored
Normal file
19
web/node_modules/component-indexof/History.md
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
0.0.3 / 2014-02-10
|
||||
==================
|
||||
|
||||
* package: rename to "component-indexof"
|
||||
|
||||
0.0.2 / 2013-11-13
|
||||
==================
|
||||
|
||||
* add repository field to package.json
|
||||
* handle node lists
|
||||
* added mocha tests
|
||||
* Update Makefile
|
||||
|
||||
0.0.1 / 2013-01-22
|
||||
==================
|
||||
|
||||
* Initial commmit
|
||||
* Add `package.json`
|
||||
13
web/node_modules/component-indexof/Makefile
generated
vendored
Normal file
13
web/node_modules/component-indexof/Makefile
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
build: components index.js
|
||||
@component build --dev
|
||||
|
||||
components:
|
||||
@component install --dev
|
||||
|
||||
clean:
|
||||
rm -fr build components template.js
|
||||
|
||||
test:
|
||||
@open test/index.html
|
||||
|
||||
.PHONY: clean test
|
||||
15
web/node_modules/component-indexof/Readme.md
generated
vendored
Normal file
15
web/node_modules/component-indexof/Readme.md
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
# indexOf
|
||||
|
||||
Lame indexOf thing, thanks microsoft
|
||||
|
||||
## Example
|
||||
|
||||
```js
|
||||
var index = require('indexof');
|
||||
index(arr, obj);
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
13
web/node_modules/component-indexof/component.json
generated
vendored
Normal file
13
web/node_modules/component-indexof/component.json
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "indexof",
|
||||
"description": "Microsoft sucks",
|
||||
"version": "0.0.3",
|
||||
"keywords": ["index", "array", "indexOf"],
|
||||
"dependencies": {},
|
||||
"development": {
|
||||
"component/assert": "*"
|
||||
},
|
||||
"scripts": [
|
||||
"index.js"
|
||||
]
|
||||
}
|
||||
7
web/node_modules/component-indexof/index.js
generated
vendored
Normal file
7
web/node_modules/component-indexof/index.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
module.exports = function(arr, obj){
|
||||
if (arr.indexOf) return arr.indexOf(obj);
|
||||
for (var i = 0; i < arr.length; ++i) {
|
||||
if (arr[i] === obj) return i;
|
||||
}
|
||||
return -1;
|
||||
};
|
||||
48
web/node_modules/component-indexof/package.json
generated
vendored
Normal file
48
web/node_modules/component-indexof/package.json
generated
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"_from": "component-indexof@0.0.3",
|
||||
"_id": "component-indexof@0.0.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-EdCRMSI5648yyPJa6csAL/6NPCQ=",
|
||||
"_location": "/component-indexof",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "component-indexof@0.0.3",
|
||||
"name": "component-indexof",
|
||||
"escapedName": "component-indexof",
|
||||
"rawSpec": "0.0.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.0.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/component-classes"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/component-indexof/-/component-indexof-0.0.3.tgz",
|
||||
"_shasum": "11d091312239eb8f32c8f25ae9cb002ffe8d3c24",
|
||||
"_spec": "component-indexof@0.0.3",
|
||||
"_where": "/Users/thilina/TestProjects/icehrm-pro/web/node_modules/component-classes",
|
||||
"bugs": {
|
||||
"url": "https://github.com/component/indexof/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"component": {
|
||||
"scripts": {
|
||||
"indexof/index.js": "index.js"
|
||||
}
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Microsoft sucks",
|
||||
"homepage": "https://github.com/component/indexof#readme",
|
||||
"keywords": [
|
||||
"index",
|
||||
"array",
|
||||
"indexOf"
|
||||
],
|
||||
"name": "component-indexof",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/component/indexof.git"
|
||||
},
|
||||
"version": "0.0.3"
|
||||
}
|
||||
18
web/node_modules/component-indexof/test/index.html
generated
vendored
Normal file
18
web/node_modules/component-indexof/test/index.html
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" href="mocha.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="mocha"></div>
|
||||
<ul style="display:none">
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ul>
|
||||
<script src="mocha.js"></script>
|
||||
<script>mocha.setup({ ui: 'bdd' });</script>
|
||||
<script src="../build/build.js"></script>
|
||||
<script src="tests.js"></script>
|
||||
<script>mocha.run();</script>
|
||||
</body>
|
||||
</html>
|
||||
231
web/node_modules/component-indexof/test/mocha.css
generated
vendored
Normal file
231
web/node_modules/component-indexof/test/mocha.css
generated
vendored
Normal file
@@ -0,0 +1,231 @@
|
||||
@charset "utf-8";
|
||||
|
||||
body {
|
||||
font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
padding: 60px 50px;
|
||||
}
|
||||
|
||||
#mocha ul, #mocha li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#mocha ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#mocha h1, #mocha h2 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#mocha h1 {
|
||||
margin-top: 15px;
|
||||
font-size: 1em;
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
#mocha h1 a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
#mocha h1 a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#mocha .suite .suite h1 {
|
||||
margin-top: 0;
|
||||
font-size: .8em;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mocha h2 {
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#mocha .suite {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
#mocha .test {
|
||||
margin-left: 15px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#mocha .test.pending:hover h2::after {
|
||||
content: '(pending)';
|
||||
font-family: arial;
|
||||
}
|
||||
|
||||
#mocha .test.pass.medium .duration {
|
||||
background: #C09853;
|
||||
}
|
||||
|
||||
#mocha .test.pass.slow .duration {
|
||||
background: #B94A48;
|
||||
}
|
||||
|
||||
#mocha .test.pass::before {
|
||||
content: '✓';
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
color: #00d6b2;
|
||||
}
|
||||
|
||||
#mocha .test.pass .duration {
|
||||
font-size: 9px;
|
||||
margin-left: 5px;
|
||||
padding: 2px 5px;
|
||||
color: white;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
-ms-border-radius: 5px;
|
||||
-o-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#mocha .test.pass.fast .duration {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mocha .test.pending {
|
||||
color: #0b97c4;
|
||||
}
|
||||
|
||||
#mocha .test.pending::before {
|
||||
content: '◦';
|
||||
color: #0b97c4;
|
||||
}
|
||||
|
||||
#mocha .test.fail {
|
||||
color: #c00;
|
||||
}
|
||||
|
||||
#mocha .test.fail pre {
|
||||
color: black;
|
||||
}
|
||||
|
||||
#mocha .test.fail::before {
|
||||
content: '✖';
|
||||
font-size: 12px;
|
||||
display: block;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
color: #c00;
|
||||
}
|
||||
|
||||
#mocha .test pre.error {
|
||||
color: #c00;
|
||||
max-height: 300px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#mocha .test pre {
|
||||
display: block;
|
||||
float: left;
|
||||
clear: left;
|
||||
font: 12px/1.5 monaco, monospace;
|
||||
margin: 5px;
|
||||
padding: 15px;
|
||||
border: 1px solid #eee;
|
||||
border-bottom-color: #ddd;
|
||||
-webkit-border-radius: 3px;
|
||||
-webkit-box-shadow: 0 1px 3px #eee;
|
||||
-moz-border-radius: 3px;
|
||||
-moz-box-shadow: 0 1px 3px #eee;
|
||||
}
|
||||
|
||||
#mocha .test h2 {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#mocha .test a.replay {
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
right: 0;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
display: block;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
line-height: 15px;
|
||||
text-align: center;
|
||||
background: #eee;
|
||||
font-size: 15px;
|
||||
-moz-border-radius: 15px;
|
||||
border-radius: 15px;
|
||||
-webkit-transition: opacity 200ms;
|
||||
-moz-transition: opacity 200ms;
|
||||
transition: opacity 200ms;
|
||||
opacity: 0.3;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
#mocha .test:hover a.replay {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#mocha-report.pass .test.fail {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mocha-report.fail .test.pass {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#mocha-error {
|
||||
color: #c00;
|
||||
font-size: 1.5 em;
|
||||
font-weight: 100;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
#mocha-stats {
|
||||
position: fixed;
|
||||
top: 15px;
|
||||
right: 10px;
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
#mocha-stats .progress {
|
||||
float: right;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
#mocha-stats em {
|
||||
color: black;
|
||||
}
|
||||
|
||||
#mocha-stats a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
#mocha-stats a:hover {
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
#mocha-stats li {
|
||||
display: inline-block;
|
||||
margin: 0 5px;
|
||||
list-style: none;
|
||||
padding-top: 11px;
|
||||
}
|
||||
|
||||
code .comment { color: #ddd }
|
||||
code .init { color: #2F6FAD }
|
||||
code .string { color: #5890AD }
|
||||
code .keyword { color: #8A6343 }
|
||||
code .number { color: #2F6FAD }
|
||||
5340
web/node_modules/component-indexof/test/mocha.js
generated
vendored
Normal file
5340
web/node_modules/component-indexof/test/mocha.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
16
web/node_modules/component-indexof/test/tests.js
generated
vendored
Normal file
16
web/node_modules/component-indexof/test/tests.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
describe('indexof', function () {
|
||||
var indexof = require('indexof')
|
||||
, assert = require('component-assert');
|
||||
|
||||
it('handles arrays', function () {
|
||||
var array = ['a', 'b', 'c'];
|
||||
assert(2 == indexof(array, 'c'));
|
||||
});
|
||||
|
||||
it('handles node lists', function () {
|
||||
var ul = document.querySelector('ul');
|
||||
var lis = ul.querySelectorAll('li');
|
||||
var li = lis[2];
|
||||
assert(2 == indexof(lis, li));
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user