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 ), |
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); | |
} |
var instance = new Hello(); | |
instance.on("test", { | |
somethig: function () { | |
this.fireEvent("next", this.name); | |
}, | |
name: "world" | |
}); | |
// fireEvent 는 instance 의 함수다. |