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
| // | |
| // FSQSplitViewController.h | |
| // | |
| // Copyright (c) 2015 Foursquare. All rights reserved. | |
| // | |
| #import "FSCoreViewController.h" | |
| NS_ASSUME_NONNULL_BEGIN; |
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
| body { | |
| font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
| font-weight: 300; | |
| font-size: 16px; | |
| line-height: 24px; | |
| } |
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
| def hash_to_url_params(params) | |
| '?' + URI.encode(params.map { |key, value| "#{key}=#{value}" }.join('&')) | |
| end |
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
| jQuery.placeholder = function() { | |
| $('[placeholder]').focus(function() { | |
| var input = $(this); | |
| if (input.hasClass('placeholder')) { | |
| input.val(''); | |
| input.removeClass('placeholder'); | |
| } | |
| }).blur(function() { | |
| var input = $(this); | |
| if (input.val() === '') { |