0317 싱크
This commit is contained in:
parent
8f07edb274
commit
4acfaad2e8
13
documents/업무/3월/3째주/0317
Normal file
13
documents/업무/3월/3째주/0317
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
이슈처리
|
||||||
|
맥 버전 수정
|
||||||
|
포커스 아웃시 알림 오지 않음
|
||||||
|
|
||||||
|
자동업데이트
|
||||||
|
1. 일렉트론 라이프 사이클 변경에 대한 일정
|
||||||
|
2. 자동 업데이트에 대한 화면 정의 필요
|
||||||
|
예) 업데이트 변경에 대한 문구
|
||||||
|
출력할 화면 위치 등
|
||||||
|
3. UI작업 필요 하기 때문에 강희경 책임님 일정 조율 필요
|
||||||
|
4. 개발 부분만 짧아도 3일~4일 소요
|
||||||
|
5. 이슈와 자동 업데이트에 대한 우선순위
|
||||||
|
|
29
documents/업무/3월/3째주/input-directive.html
Normal file
29
documents/업무/3월/3째주/input-directive.html
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
|
||||||
|
<!doctype html>
|
||||||
|
<html ng-app="myApp">
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.min.js"></script>
|
||||||
|
<script>
|
||||||
|
angular.module('myApp', [])
|
||||||
|
.controller('MyController', ['$scope', function($scope) {
|
||||||
|
$scope.hoge = "";
|
||||||
|
}])
|
||||||
|
// 日本語入力時に確定を押さなくてもng-modelを更新するdirective
|
||||||
|
.directive('jpInput', ['$parse', function($parse) {
|
||||||
|
return {
|
||||||
|
priority: 2,
|
||||||
|
restrict: 'A',
|
||||||
|
compile: function(element) {
|
||||||
|
element.on('compositionstart', function(e) {
|
||||||
|
e.stopImmediatePropagation();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}]);
|
||||||
|
</script>
|
||||||
|
<body>
|
||||||
|
<div ng-controller="MyController">
|
||||||
|
<input type="text" ng-model="hoge" jp-input>
|
||||||
|
{{hoge}}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user