it is added to package.json by generator yeoman. All module is in devDependencies. The number of added module is "36".
- grunt
| 1. Editor | |
| - request | |
| { | |
| midiObject: { | |
| title: string, | |
| description: string, | |
| artist: string, | |
| playtime: integer, | |
| owner: string, | |
| albumArtName: string, |
| MidiObject: { | |
| header : Object ( Midi Meta Data ), | |
| tracks : List ( Event List ) | |
| } | |
| Music: { | |
| id : string ( DB Unique ID = userid + DBid ), | |
| owner : string ( FB first name + last name ), | |
| artist : string ( User Name in SoundPancake = midi file uploader name ), | |
| title : string ( Composition Name ), |
<div class="wrapper">
| function Ctrl($scope) { | |
| $scope.message = "Waiting 2000ms for update"; | |
| setTimeout(function () { | |
| $scope.message = "Timeout called!"; | |
| // AngularJS unaware of update to $scope | |
| }, 2000); | |
| } |
| function Ctrl($scope) { | |
| $scope.message = "Waiting 2000ms for update"; | |
| setTimeout(function () { | |
| $scope.$apply(function () { // wrapping using $scope.$apply | |
| $scope.message = "Timeout called!"; | |
| }); | |
| }, 2000); | |
| } |
keyword: ์๋ฐ์คํฌ๋ฆฝํธ, ์ ์ ๋ถ์, ๋์ ์ธ์ด, ์ฝ๋ ์ต์ ํ
1995๋ ๋น์๋ ์ปดํจํฐ ๋ฆฌ์์ค๊ฐ ๋น์์ ๋ฟ๋ง ์๋๋ผ ๋คํธ์ํฌ ์ธํ๋ผ์ ๋ฎ์ ๋์ญํญ ๋ฑ ๋ค์ํ ๋ฌธ์ ๋ค๋ก ์ธํ์ฌ ๋๋ถ๋ถ์ ์์ ์ ์๋ฒ์์ ์ฒ๋ฆฌํ์์ต๋๋ค. ๊ทธ๋ฌ๋ค ์ปดํจํฐ ๋ฆฌ์์ค์ ๋น์ฉ์ด ๋ฎ์์ง๋ฉด์ ์น ๋ธ๋ผ์ฐ์ ์์ ์ ๋ ฅ ๊ฒ์ฆ์ฒ๋ผ ์์ ์์ ๋ค์ ์ฒ๋ฆฌํ ์ ์๊ฒ ๋๋ฉด์, ํด๋น ์์ ๋ค์ ์ฒ๋ฆฌํ๊ธฐ ์ํด ์๋ฐ์คํฌ๋ฆฝํธ๊ฐ ๋ฑ์ฅํ์ต๋๋ค.
| var instance = new Hello(); | |
| instance.on("test", { | |
| somethig: function () { | |
| this.fireEvent("next", this.name); | |
| }, | |
| name: "world" | |
| }); | |
| // fireEvent ๋ instance ์ ํจ์๋ค. |