These rules are adopted from the AngularJS commit conventions.
This file contains hidden or 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
{ | |
"minSupported": { | |
"ios": 0, | |
"android": 0 | |
}, | |
"latest": { | |
"ios": 0, | |
"android": 0 | |
}, | |
"store": { |
This file contains hidden or 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
# 개인정보처리방침 | |
'주사위 굴리기' 앱은 사용자의 개인정보를 수집하지 않는 프라이버시 중심의 앱입니다. | |
## 1. 수집하는 개인정보 | |
당사는 어떠한 개인정보도 수집하지 않습니다. | |
## 2. 데이터 저장 | |
- 주사위 기록은 사용자의 기기에만 저장되며, 외부로 전송되지 않습니다. | |
- 모든 데이터는 앱을 삭제하면 완전히 제거됩니다. |
This file contains hidden or 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
[ | |
{ | |
"name": "centers", | |
"options": { | |
"tabBarLabel": "보육원", | |
"tabBarIcon": { | |
"package": "FontAwesome", | |
"name": "bus" | |
} | |
} |
This file contains hidden or 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
var intervalId; | |
var clearFunction = function() { | |
if ($('[aria-label="계정 삭제"]').size() == 0) { | |
console.log("interval cleared") | |
clearInterval(intervalId) | |
return | |
} | |
$('[aria-label="계정 삭제"]')[0].click(); | |
setTimeout(function () { |