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
| //https://groups.google.com/forum/#!msg/google-apps-api-japan/sbXlShVOGiw/9Bl3i1s1ch8J | |
| function deleteTrigger(triggerKey) { | |
| triggerKey = triggerKey || "triggerId"; | |
| // ああああああああ | |
| var triggerId = ScriptProperties.getProperty(triggerKey); | |
| if(!triggerId) { | |
| 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
| $main-title: ( | |
| blog: | |
| ( | |
| width:188px, | |
| background-image:url(../images/blog/main-title.png) | |
| ), | |
| archive: | |
| ( | |
| width:162px, | |
| background-image:url(../images/archive/main-title.png) |
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
| $map: ( | |
| key1: 10px, | |
| key2: 20px, | |
| key3: ( | |
| nested-key1: red, | |
| nested-key2: blue, | |
| ), | |
| ); | |
| .map { |
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
| list = { | |
| blog: { | |
| width: 89px | |
| height: 44px | |
| }, | |
| archive: { | |
| width: 210px | |
| height: 44px | |
| }, | |
| about: { |
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
| overflow: scroll; | |
| -webkit-overflow-scrolling : touch; |
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
| $.fn.extend | |
| moveLink: (options) -> | |
| # Default settings | |
| if !$(this).length > 0 | |
| return | |
| settings = { | |
| fixedNav:"" | |
| } | |
| arr = [] | |
| $navHeight = 0 |
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
| $.fn.extend | |
| multiMap: (options) -> | |
| if !$(@).length > 0 | |
| return | |
| $self = $(@) | |
| settings = { | |
| callback: ()-> |
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
| $.fn.extend | |
| tabs: (options) -> | |
| # Default settings | |
| settings = | |
| duration: 500 | |
| # Merge default settings with options. | |
| settings = $.extend settings, options |
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
| @mixin media-smp { | |
| // スマートフォンのみ | |
| @media only screen and (max-width: $smp) { | |
| @content; | |
| } | |
| } |
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
| /** | |
| * Simple Report Script | |
| */ | |
| /** | |
| * Date Settings | |
| */ | |
| var date = new Date(), |