- mitsuruog
https://github.com/google/ios-webkit-debug-proxy
iOSとLinuxのみ。Windowsは動作しない。
公式チュートリアルにあるようにbrewで簡単インストール
brew install ios-webkit-debug-proxy
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
| sap.ui.jsfragment "util.Detail", | |
| createContent: (oController) -> | |
| # ここに普通のJSViewのcreateContentと同様にUIコントロールを追加して | |
| # 最後にreturnします。 |
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
| @dialog = new sap.m.Dialog | |
| title: "Google Map" | |
| content: [ | |
| new sap.ui.core.HTML | |
| content: "<div id='mapConteiner'></div>" | |
| ] | |
| #ダイアログ閉じる処理 | |
| beginButton: sap.m.Button | |
| text: "close" |
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
| new sap.m.Text({ | |
| text: { | |
| parts: [ | |
| {path: "Width"}, | |
| {path: "Depth"}, | |
| {path: "Height"}, | |
| {path: "DimUnit"} | |
| ], | |
| formatter: function(width, depth, height, dimUnit){ | |
| return width + " x " + depth + " x " + height + " " + dimUnit; |
- 小川充
- @mitsuruog
- Front-end Developer in Givery inc.
- Angular User Group Staff.
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
| # This references the default nodejs container from | |
| # the Docker Hub: https://registry.hub.docker.com/_/node/ | |
| # If you want Nodesource's container you would reference nodesource/node | |
| # Read more about containers on our dev center | |
| # http://devcenter.wercker.com/docs/containers/index.html | |
| box: node:4.2.2 | |
| # This is the build pipeline. Pipelines are the core of wercker | |
| # Read more about pipelines on our dev center | |
| # http://devcenter.wercker.com/docs/pipelines/index.html |
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
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to make opened Markdown files always be soft wrapped: | |
| # | |
| # path = require 'path' | |
| # |
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
| //3.0.3以降 | |
| $myModal = $('#myModal').modal({}, { | |
| person: 'mitsuruog' | |
| }); | |
| $myModal.on('show.bs.modal', function(e) { | |
| var name = e.relatedTarget.person; | |
| } |
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
| //イベント伝搬をキャンセル | |
| function cancelEvent(e) { | |
| e.preventDefault(); | |
| e.stopPropagation(); | |
| } | |
| //ファイルがドロップされたら動くコード | |
| function handllerDroppedFile(e) { | |
| // |
NewerOlder
