Skip to content

Commit

Permalink
bugfix: adding declaration to language object
Browse files Browse the repository at this point in the history
  • Loading branch information
crsten committed Feb 29, 2016
1 parent 79c603f commit d716f45
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datepickk",
"version": "1.0.0",
"version": "1.0.1",
"description": "Flexbox/js datepicker",
"main": "src/js/datepickk.js",
"authors": [
Expand Down
3 changes: 2 additions & 1 deletion dist/datepickk.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* Datepickk
* Docs & License: https://crsten.github.com/datepickk
* (c) 2016 Carsten Jacobsen
* v. 1.0.1
*/
(function(){

Expand All @@ -14,7 +15,7 @@
var currentYear = new Date().getFullYear();
var currentMonth = new Date().getMonth() + 1;

languages = {
var languages = {
no: {
monthNames:['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'],
dayNames:['ma','ti','on','to','fr','lø','sø'],
Expand Down
2 changes: 1 addition & 1 deletion dist/datepickk.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/datepickk.min.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/js/datepickk.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* Datepickk
* Docs & License: https://crsten.github.com/datepickk
* (c) 2016 Carsten Jacobsen
* v. 1.0.1
*/
(function(){

Expand All @@ -14,7 +15,7 @@
var currentYear = new Date().getFullYear();
var currentMonth = new Date().getMonth() + 1;

languages = {
var languages = {
no: {
monthNames:['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'],
dayNames:['ma','ti','on','to','fr','lø','sø'],
Expand Down

0 comments on commit d716f45

Please sign in to comment.