Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #260

Open
wants to merge 34 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a511ccc
Modified versions
May 3, 2016
88ea3fd
New version release.
May 3, 2016
8ccbf6c
Small text modification
Jun 19, 2016
50c0951
Readme change
Jun 19, 2016
5ea2e79
Readme change
Jun 19, 2016
c7730f8
update jquery version on bower file
matuu Sep 13, 2016
831e036
Merge pull request #233 from matuu/master
pawelczak Oct 2, 2019
9225ec0
Code Reformat
pawelczak Oct 2, 2019
9e02a4c
Close #399. Removed bower
pawelczak Oct 2, 2019
9f3b378
Fixed plugin
pawelczak Oct 2, 2019
3cb3c42
Upgraded qunit, fixed some unit tests
pawelczak Oct 2, 2019
9ccf24a
Refactor
pawelczak Oct 2, 2019
b10a87c
Test refactor
pawelczak Oct 2, 2019
89f8ff7
Test refactor
pawelczak Oct 2, 2019
99be05d
Fixed security issues
pawelczak Oct 2, 2019
84f20db
Removed jquery lib from repo
pawelczak Oct 2, 2019
eb75a4e
Fix display issue when field has lost focus (#388)
KyleMit Oct 2, 2019
1ad753f
Close #403. Husky pipeline
pawelczak Oct 2, 2019
43f59d4
fixed UTF-8 characters specially on iPhone devices #344 #184 #189 (#360)
Oct 2, 2019
aeb803d
Doesn't work when the id contains colons (#234)
jrz Oct 2, 2019
b86b332
409 support custom match (#410)
vanduc1102 Oct 5, 2019
99014cf
feat: .editorconfig for nomore tabs and spaces mix (#411)
vanduc1102 Oct 5, 2019
07f72f0
Bump https-proxy-agent from 2.2.2 to 2.2.4 (#426)
dependabot[bot] Jan 30, 2022
f9311aa
Bump handlebars from 4.4.1 to 4.7.7 (#451)
dependabot[bot] Jan 30, 2022
571b1f0
Bump jquery from 3.4.1 to 3.5.0 (#429)
dependabot[bot] Jan 30, 2022
a4efb10
Bump lodash from 4.17.15 to 4.17.21 (#452)
dependabot[bot] Jan 30, 2022
7e91055
Bump ws from 6.2.1 to 6.2.2 (#456)
dependabot[bot] Jan 30, 2022
ba0e10f
Bump yargs-parser from 13.1.1 to 13.1.2 (#441)
dependabot[bot] Jan 30, 2022
946b561
Bump i from 0.3.6 to 0.3.7 (#460)
dependabot[bot] Jan 30, 2022
8f9dbda
Bump grunt from 0.4.5 to 1.3.0 (#450)
dependabot[bot] Jan 30, 2022
6dd82ed
Bump y18n from 4.0.0 to 4.0.1 (#448)
dependabot[bot] Jan 30, 2022
b23ca9c
Bump hosted-git-info from 2.8.4 to 2.8.9 (#453)
dependabot[bot] Jan 30, 2022
7d6b2f5
Bump path-parse from 1.0.6 to 1.0.7 (#459)
dependabot[bot] Jan 30, 2022
9bac516
Bump glob-parent from 5.1.0 to 5.1.2 (#457)
dependabot[bot] Jan 30, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# EditorConfig is awesome: http://EditorConfig.org

# Howto with your editor: http://editorconfig.org/#download
# Sublime: https://github.com/sindresorhus/editorconfig-sublime

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[**]
end_of_line = lf
insert_final_newline = true

# Standard at: https://github.com/felixge/node-style-guide
[**.{js,json}]
trim_trailing_whitespace = true
indent_style = tab
indent_size = 4
quote_type = single
curly_bracket_next_line = false
spaces_around_operators = true
space_after_control_statements = true
space_after_anonymous_functions = true
spaces_in_brackets = false

# No Standard. Please document a standard if different from .js
[**.css]
trim_trailing_whitespace = true
indent_style = tab

[**.html]
trim_trailing_whitespace = true
indent_style = tab
indent_size = 4

# No standard. Please document a standard if different from .js
[**.md]
indent_style = tab


# The indentation in package.json will always need to be 2 spaces
# https://github.com/npm/npm/issues/4718
[{package, bower}.json]
indent_style = space
indent_size = 2
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.*
!.gitignore
!.editorconfig
!.jscsrc
!.jshintrc
!.gitattributes
Expand Down
3 changes: 1 addition & 2 deletions .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@
"expr": true,
"immed": true,
"noarg": true,
"quotmark": "double",
"quotmark": "single",
"smarttabs": true,
"trailing": true,
"undef": true,
"unused": true,
"browser": true,
"es3": true,

"globals": {
"QUnit": false,
"exports": false,
Expand Down
Loading