forked from gbrits/ionic-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request gbrits#12 from szemel/master
added multilanguage from momentjs lang files
- Loading branch information
Showing
14 changed files
with
190 additions
and
109 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
export { CalendarModule } from './src/calendar/calendar.module'; | ||
//# sourceMappingURL=index.js.map | ||
"use strict"; | ||
exports.__esModule = true; | ||
var calendar_module_1 = require("./src/calendar/calendar.module"); | ||
exports.CalendarModule = calendar_module_1.CalendarModule; |
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,36 @@ | ||
"use strict"; | ||
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { | ||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; | ||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); | ||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; | ||
return c > 3 && r && Object.defineProperty(target, key, r), r; | ||
}; | ||
import { NgModule } from '@angular/core'; | ||
import { IonicModule } from 'ionic-angular'; | ||
import { Calendar } from './calendar'; | ||
import { monthName } from './pipes/month-name'; | ||
var CalendarModule = (function () { | ||
exports.__esModule = true; | ||
var core_1 = require("@angular/core"); | ||
var ionic_angular_1 = require("ionic-angular"); | ||
var calendar_1 = require("./calendar"); | ||
var month_name_1 = require("./pipes/month-name"); | ||
var weekday_name_1 = require("./pipes/weekday-name"); | ||
var CalendarModule = /** @class */ (function () { | ||
function CalendarModule() { | ||
} | ||
CalendarModule = __decorate([ | ||
core_1.NgModule({ | ||
declarations: [ | ||
calendar_1.Calendar, | ||
month_name_1.monthName, | ||
weekday_name_1.weekdayName | ||
], | ||
imports: [ | ||
ionic_angular_1.IonicModule, | ||
], | ||
exports: [ | ||
calendar_1.Calendar, | ||
month_name_1.monthName, | ||
weekday_name_1.weekdayName | ||
] | ||
}) | ||
], CalendarModule); | ||
return CalendarModule; | ||
}()); | ||
CalendarModule = __decorate([ | ||
NgModule({ | ||
declarations: [ | ||
Calendar, | ||
monthName | ||
], | ||
imports: [ | ||
IonicModule, | ||
], | ||
exports: [ | ||
Calendar, | ||
monthName | ||
] | ||
}) | ||
], CalendarModule); | ||
export { CalendarModule }; | ||
//# sourceMappingURL=calendar.module.js.map | ||
exports.CalendarModule = CalendarModule; |
This file contains 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
Oops, something went wrong.