Skip to content

Commit 0cc4179

Browse files
author
Yousef Sultan
committed
Remove jank
Signed-off-by: Yousef Sultan <[email protected]>
1 parent 906e47e commit 0cc4179

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1407
-2937
lines changed

.babelrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"presets": [
3+
["@babel/env"]
4+
],
5+
"plugins": [
6+
"@babel/plugin-syntax-object-rest-spread",
7+
"@babel/plugin-transform-runtime"
8+
]
9+
}

.eslintrc.js

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"node": true,
5+
"commonjs": false,
6+
"es6": true
7+
},
8+
9+
"extends": [
10+
"plugin:vue/recommended"
11+
],
12+
13+
"parserOptions": {
14+
"ecmaVersion": 2018,
15+
"sourceType": "module"
16+
},
17+
18+
"rules": {
19+
// This is bugged
20+
"require-atomic-updates": "off",
21+
22+
"no-unused-vars": ["error", { "args": "none", "ignoreRestSiblings": true }],
23+
24+
"comma-dangle": ["error", "always-multiline"],
25+
"arrow-parens": ["error", "as-needed"],
26+
27+
"indent": ["error", "tab", { SwitchCase: 1 }],
28+
"object-curly-spacing": ["error", "always"],
29+
"space-infix-ops": ["error"],
30+
31+
"max-len": ["error", {
32+
code: 120,
33+
ignoreUrls: true,
34+
ignoreStrings: true,
35+
ignoreTemplateLiterals: true,
36+
ignoreRegExpLiterals: true
37+
}],
38+
39+
"eqeqeq": ["error", "always"],
40+
41+
"linebreak-style": [
42+
"error",
43+
"unix"
44+
],
45+
46+
"quotes": [
47+
"error",
48+
"single"
49+
],
50+
51+
"semi": [
52+
"error",
53+
"always"
54+
],
55+
56+
"indent": "off",
57+
58+
"vue/script-indent": [
59+
"error",
60+
"tab",
61+
{"baseIndent": 1}
62+
],
63+
"vue/html-indent": [
64+
"error",
65+
"tab",
66+
],
67+
"vue/max-attributes-per-line": [2, {
68+
"singleline": 4,
69+
"multiline": {
70+
"max": 4,
71+
"allowFirstLine": true,
72+
}
73+
}],
74+
75+
"vue/order-in-components": "off"
76+
}
77+
};

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 Yousef Sultan
3+
Copyright (c) 2019 Yousef Sultan
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/css/app.css

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/css/app.d2d11a9f.css

-1
This file was deleted.

docs/css/chunk-vendors.f1839817.css

-18
This file was deleted.

docs/favicon.ico

-4.19 KB
Binary file not shown.

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/vue-materialize-datatable/favicon.ico><link rel=stylesheet type=text/css href=/vue-materialize-datatable/ghpages-materialize.css><link rel=stylesheet type=text/css href=/vue-materialize-datatable/normalize.css><link rel=stylesheet type=text/css href=/vue-materialize-datatable/spacing-helpers.css><link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel=stylesheet><title>vue-materialize-datatable-demo-vue2</title><link href=/vue-materialize-datatable/css/app.d2d11a9f.css rel=preload as=style><link href=/vue-materialize-datatable/css/chunk-vendors.f1839817.css rel=preload as=style><link href=/vue-materialize-datatable/js/app.eed9423b.js rel=preload as=script><link href=/vue-materialize-datatable/js/chunk-vendors.5b9f0fcc.js rel=preload as=script><link href=/vue-materialize-datatable/css/chunk-vendors.f1839817.css rel=stylesheet><link href=/vue-materialize-datatable/css/app.d2d11a9f.css rel=stylesheet></head><body><noscript><strong>We're sorry but vue-materialize-datatable-demo-vue2 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/vue-materialize-datatable/js/chunk-vendors.5b9f0fcc.js></script><script src=/vue-materialize-datatable/js/app.eed9423b.js></script></body></html>
1+
<!DOCTYPE html><html lang="en" dir="ltr"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="language" content="EN"><meta name="keywords" content="vue, vuejs, materialize, datatable"><link rel="icon" type="image/png" href="/images/logo.png"><link rel="shortcut icon" href="/images/logo.png"><meta name="theme-color" content="#222222"><link href="./css/app.css" rel="stylesheet" type="text/css"><link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"><link href="/vue-materialize-datatable/css/app.css" rel="stylesheet"></head><body><div id="app"></div><script type="text/javascript" src="./js/app.js"></script><script type="text/javascript" src="/vue-materialize-datatable/js/app.js"></script></body></html>

docs/js/app.eed9423b.js

-2
This file was deleted.

docs/js/app.eed9423b.js.map

-1
This file was deleted.

docs/js/app.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/js/app.js.LICENSE

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*!
2+
* Vue.js v2.6.10
3+
* (c) 2014-2019 Evan You
4+
* Released under the MIT License.
5+
*/
6+
7+
/*!
8+
* Materialize v1.0.0 (http://materializecss.com)
9+
* Copyright 2014-2017 Materialize
10+
* MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
11+
*/
12+
13+
/*! cash-dom 1.3.5, https://github.com/kenwheeler/cash @license MIT */
14+
15+
/**
16+
* Get time in ms
17+
* @license https://raw.github.com/jashkenas/underscore/master/LICENSE
18+
* @type {function}
19+
* @return {number}
20+
*/
21+
22+
/**
23+
* Returns a function, that, when invoked, will only be triggered at most once
24+
* during a given window of time. Normally, the throttled function will run
25+
* as much as it can, without ever going more than once per `wait` duration;
26+
* but if you'd like to disable the execution on the leading edge, pass
27+
* `{leading: false}`. To disable execution on the trailing edge, ditto.
28+
* @license https://raw.github.com/jashkenas/underscore/master/LICENSE
29+
* @param {function} func
30+
* @param {number} wait
31+
* @param {Object=} options
32+
* @returns {Function}
33+
*/

docs/js/chunk-vendors.5b9f0fcc.js

-49
This file was deleted.

docs/js/chunk-vendors.5b9f0fcc.js.map

-1
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)