Skip to content

Commit

Permalink
Module extracted from standalone SilverDecisions app
Browse files Browse the repository at this point in the history
  • Loading branch information
mwasiluk committed Mar 6, 2017
1 parent c0982a2 commit 5bd4c04
Show file tree
Hide file tree
Showing 12 changed files with 18,350 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.js]
indent_style = space
indent_size = 4
31 changes: 31 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# All text files should have the "lf" (Unix) line endings
* text eol=lf

# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.js text
*.json text
*.css text
*.scss text
*.html text

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.gif binary

*.docx binary
*.doc binary
*.odt binary
*.font binary
*.pdf binary
*.exe binary
*.eot binary
*.svg binary
*.ttf binary
*.woff binary
*.woff2 binary
*.otf binary
*.mp4 binary
*.ogv binary
*.webm binary
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Created by .ignore support plugin (hsz.mobi)
.idea/
*.iml
node_modules/
bower_components/
15 changes: 15 additions & 0 deletions demo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
</head>
<body>
<script>
var SilverDecisions = {
test: 'test'
}
</script>
<script src="../dist/sd-utils.min.js"></script>
</body>
</html>
Loading

0 comments on commit 5bd4c04

Please sign in to comment.