#JavaScript開発環境
##RequireJS
概要モジュール管理ライブラリ導入メリット複数JSファイルの依存関係を管理しやすくなる関連サイト- 公式サイト - http://requirejs.org/
| (function (window) { | |
| // This library re-implements setTimeout, setInterval, clearTimeout, clearInterval for iOS6. | |
| // iOS6 suffers from a bug that kills timers that are created while a page is scrolling. | |
| // This library fixes that problem by recreating timers after scrolling finishes (with interval correction). | |
| // This code is free to use by anyone (MIT, blabla). | |
| // Author: [email protected] | |
| var timeouts = {}; | |
| var intervals = {}; |
#JavaScript開発環境
##RequireJS
概要 モジュール管理ライブラリ導入メリット 複数JSファイルの依存関係を管理しやすくなる関連サイト| export interface Coordinate { | |
| contacts: { [key: string]: Contact }; | |
| } | |
| export interface Contact { | |
| birthday?: Date; | |
| emails: string[]; | |
| firstName: string; | |
| highScore: number; | |
| lastName?: string; |