Skip to content

Updated createSafeDate function for brazil timezone #97

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

Open
wants to merge 57 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
9b66272
Use native dom functions
eeroan Aug 22, 2016
59a759e
Get rid of jquery piece by piece
eeroan Aug 23, 2016
8dac9c3
Use el function
eeroan Aug 23, 2016
ba3f30c
Refactor towars more functional style
eeroan Aug 24, 2016
f1cea4b
Replace strings with dom elements
eeroan Aug 24, 2016
c72280c
Get rid of jquery piece by piece
eeroan Aug 24, 2016
56c8e8f
Replace strings with dom elements
eeroan Aug 24, 2016
f0002c8
Get rid of jquery piece by piece
eeroan Aug 24, 2016
ece11a5
Get rid of jquery totally from CalendarBody
eeroan Aug 24, 2016
f7327f0
Get rid of jquery piece by piece
eeroan Aug 24, 2016
1e46d5a
Get rid of jquery piece by piece
eeroan Aug 24, 2016
fe7021f
Introduce eslint
eeroan Aug 26, 2016
29419f1
Fix indents
eeroan Aug 29, 2016
c6291bc
Force usage of single quotes
eeroan Aug 29, 2016
209e3d1
Allow only one empty line
eeroan Aug 29, 2016
0cd10cb
Add travis config file
eeroan Aug 29, 2016
d29bba9
Get rid of require.js in tests
eeroan Aug 30, 2016
845c352
Update node_modules
eeroan Aug 30, 2016
1e03b42
Fix typo in package.json
eeroan Aug 30, 2016
f8eb5c5
Organize order of dependencies
eeroan Aug 30, 2016
efd4ba6
Get rid of jquery piece by piece
eeroan Nov 5, 2016
adc283c
Get rid of jquery piece by piece
eeroan Nov 5, 2016
9758f3f
Fix tests
eeroan Nov 7, 2016
758daa1
Remove unused file
eeroan Aug 30, 2016
cee4305
Extract continuousCalendar from jquery.continuousCalendar
eeroan Dec 27, 2016
0b36bf5
For callback pass dom element instead of jquery object
eeroan Dec 27, 2016
8272c6d
Transform getContainer to jquery free version
eeroan Dec 27, 2016
d3512d3
Remove redundant argument
eeroan Dec 27, 2016
7f07c22
Update dependencies
eeroan Dec 27, 2016
8894c10
Fix tests
eeroan Dec 28, 2016
d1ebe7f
Get rid of jquery data
eeroan Dec 28, 2016
5b2a7f3
Remove unnecessary wrapping
eeroan Dec 28, 2016
57ea5af
Pass native container element for events modules
eeroan Dec 28, 2016
be2f472
Use native elements for fields
eeroan Dec 28, 2016
b6fc4b4
Bind clearDates without jquery
eeroan Dec 28, 2016
9f74e8d
Bind mouse move actions without jquery
eeroan Dec 28, 2016
6d1680e
Toggle classes without jquery
eeroan Dec 28, 2016
941a5b2
Get rid of jquery in RangeEvents module
eeroan Dec 28, 2016
c8d8987
Remove jquery wrapping from calendarContainer
eeroan Dec 28, 2016
c5f93a0
Bind icon toggle natively
eeroan Dec 28, 2016
f7ca43c
Create date labels without jquery
eeroan Dec 29, 2016
c2246c6
Use container2 instead of container.get(0)
eeroan Dec 29, 2016
988ef46
Add npmrc and set loglevel to silent
eeroan Dec 29, 2016
ba11370
Make current date clickable
eeroan Dec 29, 2016
9889442
Make getElemDate native
eeroan Dec 29, 2016
bae31b1
Move custom scroll init outside from continuousCalendar
eeroan Dec 29, 2016
22e49ea
Make continuousCalendar independent of jquery
eeroan Dec 29, 2016
81176da
Introduce util module
eeroan Dec 29, 2016
e17f023
Add and remove multiple classes using single method call
eeroan Dec 29, 2016
4250417
Intoduce toggle function
eeroan Dec 29, 2016
8eddb86
Add default values
eeroan Dec 29, 2016
4ced61a
Build bundle
eeroan Jan 22, 2017
b137265
Minify bundle
eeroan Jan 22, 2017
f6e2313
Make toggle function safe
eeroan Jan 22, 2017
e93b9a2
Minify bundle
eeroan Jan 22, 2017
a818d11
Make index page work without jquery
eeroan Jan 22, 2017
b4807e8
Updated createSafeDate function for brazil timezone
ishakmehta04 Feb 14, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build
**/node_modules
src/main/jquery.tinyscrollbar-1.66/
src/lib
site
27 changes: 27 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"extends": "eslint:recommended",
"rules": {
"arrow-parens": [2, "as-needed"],
"no-console": 0,
"no-const-assign": 2,
"no-sparse-arrays": 0,
"no-unneeded-ternary": 2,
"prefer-const": 2,
"semi": [2, "never"],
"indent": ["error", 2],
"quotes": ["error", "single"],
"no-multiple-empty-lines": ["error", {"max": 1}]
},
"env": {
"browser": true,
"mocha": true,
"jquery": true,
"node": true,
"es6": false
},
"globals": {
"expect": true,
"define": true,
"requirejs": true
}
}
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
loglevel=silent
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: node_js
node_js:
- stable
branches:
only:
- master
2 changes: 2 additions & 0 deletions build/continuousCalendar-latest-min.js

Large diffs are not rendered by default.

Loading