This repository was archived by the owner on Dec 15, 2017. It is now read-only.
forked from Eonasdan/tempus-dominus
-
Notifications
You must be signed in to change notification settings - Fork 209
Add "Calendar" object for using with calendars other than Georgian #250
Open
mahdiprog
wants to merge
790
commits into
tarruda:master
Choose a base branch
from
Eonasdan:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Typo: moment.locale()
README.md typo fix
Allow the user to style individual calendar days
Make datepickers not share options
Allow passing a Date()-object to `viewDate()`
Export line inside factory function had not restrictive enough check that may caused global namespace polluting problem during Karma test. Karma has a `window.module` alias for `angular.mock.module` method used during tests. And as a result other libs that may check for CommonJS env could erroneously try to use `require` method which is non-existing in browser env. Example: ```javascript if (typeof module !== 'undefined' && module.exports) { // CommonJS module.exports = factory(require('angular')); } ``` On the other hand this assignment inside factory function was overwritten by the outcome of factory function itself in following line: ```javascript module.exports = factory(require('jquery'), require('moment')); ``` As a result when we had tried to `require('./bootstrap-datetimepicker.js')` in other script file, we got `undefined`.
Fix CommonJS export
Update composer.json
update version
datetimepicker should be placed within a non-static positioned container
datetimepicker() is not a function => jquery, moment, bootstrap are p…
Add support for Jquery ^3.0 in package.json
Bumps [tough-cookie](https://github.com/salesforce/tough-cookie) from 4.1.2 to 4.1.4. - [Release notes](https://github.com/salesforce/tough-cookie/releases) - [Changelog](https://github.com/salesforce/tough-cookie/blob/master/CHANGELOG.md) - [Commits](salesforce/tough-cookie@v4.1.2...v4.1.4) --- updated-dependencies: - dependency-name: tough-cookie dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Roberto Jorge de Pinho Oliveira <roliveira@we-aloft.com>
* Add Ukrainian localization * Fix Ukrainian localization
fix vulnerabilities
Bumps [ws](https://github.com/websockets/ws) and [socket.io](https://github.com/socketio/socket.io). These dependencies needed to be updated together. Updates `ws` from 8.11.0 to 8.17.1 - [Release notes](https://github.com/websockets/ws/releases) - [Commits](websockets/ws@8.11.0...8.17.1) Updates `socket.io` from 4.6.1 to 4.7.5 - [Release notes](https://github.com/socketio/socket.io/releases) - [Changelog](https://github.com/socketio/socket.io/blob/main/CHANGELOG.md) - [Commits](socketio/socket.io@4.6.1...4.7.5) --- updated-dependencies: - dependency-name: ws dependency-type: indirect - dependency-name: socket.io dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md) - [Commits](micromatch/braces@3.0.2...3.0.3) --- updated-dependencies: - dependency-name: braces dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [ws](https://github.com/websockets/ws) and [socket.io-adapter](https://github.com/socketio/socket.io-adapter). These dependencies needed to be updated together. Updates `ws` from 8.11.0 to 8.17.1 - [Release notes](https://github.com/websockets/ws/releases) - [Commits](websockets/ws@8.11.0...8.17.1) Updates `socket.io-adapter` from 2.5.2 to 2.5.5 - [Release notes](https://github.com/socketio/socket.io-adapter/releases) - [Changelog](https://github.com/socketio/socket.io-adapter/blob/main/CHANGELOG.md) - [Commits](socketio/socket.io-adapter@2.5.2...2.5.5) --- updated-dependencies: - dependency-name: ws dependency-type: indirect - dependency-name: socket.io-adapter dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Wrong locale (de => cs)
Bumps [rollup](https://github.com/rollup/rollup) from 2.79.1 to 2.79.2. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](rollup/rollup@v2.79.1...v2.79.2) --- updated-dependencies: - dependency-name: rollup dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* calendar works * calendar works * icon element opens on keybind * focus color button label clock progress * clock works * bug fixes * bug fixes * fix test * fix label issue * added keyboard nav docs --------- Co-authored-by: Jonathan <me@jonathanpeterson.com>
made keyboard nav optional
* minor typo (in -> is), and "." if path * path dot x is not a known option, with dot conditional on there being a path * rename dot var to test husky (had to chmod ug+x .husky/* ; chmod ug+x .git/hooks/*)
"2-digits" is wrong and should be "2-digit". See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat It crashes in latest Chrome as is.
To clean up its internal stuff, fixes: #2959
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi
I need a "Calendar" object in datepicker so I can set other calenders like Jalali.
This feature is available on jQuery UI datepicker and I think it's vital if you want the control to be international.