This file contains 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
class WhatAreYouDoingWindowController: NSWindowController, | |
NSWindowDelegate, NSTextFieldDelegate { | |
let tvInput: NSTextField? | |
let lblInstruction: Label? | |
override init() { | |
super.init() | |
self.window = NSWindow(contentRect: NSRect(x: 0, y: 0, width: 400, height: 32), |
This file contains 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
extension EmailViewController: UITextFieldDelegate { | |
func textFieldShouldReturn(textField: UITextField) { | |
self.view.endEditing() | |
} | |
} |
This file contains 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
target 'Roll the Dice' do | |
pod 'AFNetworking', '~> 2.5' | |
pod 'JSONModel', '~> 1.0' | |
pod 'Google/Analytics' | |
pod 'RegExCategories', '~> 1.0' | |
pod 'hexagonify', :path => 'lib/hexagonify/' | |
pod 'FXBlurView', '~> 1.6' | |
pod 'HotMeter', :path => '../HotMeter/' | |
pod 'UIView+Glow', :path => 'lib/3rd-party/UIView-Glow/' | |
pod 'EDHexColor', '~> 0.0' |
This file contains 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
/** | |
* Allows numbers 1-3 to switch tabs in a pull request on bitbucket.org | |
*/ | |
var TabNumbers = (function($) { | |
var ids = { | |
'overview': '#pr-menu-diff', | |
'commits': '#pr-menu-commits', | |
'activity': '#pr-menu-activity' |
This file contains 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
/** | |
* Adds useful keymappings to pull requests on bitbucket.org | |
*/ | |
var PrKeyMap = (function($) { | |
'use strict'; | |
var keymap = { | |
tab_overview: '1', | |
tab_commits: '2', |
This file contains 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
diff --git a/webrtc/sdk/objc/Framework/Classes/RTCDTMFSender+Private.h b/webrtc/sdk/objc/Framework/Classes/RTCDTMFSender+Private.h | |
index e69de29..ff31077 100644 | |
--- a/webrtc/sdk/objc/Framework/Classes/RTCDTMFSender+Private.h | |
+++ b/webrtc/sdk/objc/Framework/Classes/RTCDTMFSender+Private.h | |
@@ -0,0 +1,42 @@ | |
+/* | |
+ * libjingle | |
+ * Copyright 2014 Google Inc. | |
+ * | |
+ * Redistribution and use in source and binary forms, with or without |
This file contains 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 speedCurriculum = [ | |
{ | |
// week 1 | |
monday: { | |
speed: [ | |
{ name: "Endurance Chart", link: "" } | |
], | |
sticking: [ | |
{ name: "Triplet Sprints" }, | |
{ name: "6/8 Sprints" }, |
This file contains 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
# Doxyfile 1.8.12 | |
#--------------------------------------------------------------------------- | |
# Project related configuration options | |
#--------------------------------------------------------------------------- | |
DOXYFILE_ENCODING = UTF-8 | |
PROJECT_NAME = "WebRTC" | |
PROJECT_NUMBER = | |
PROJECT_BRIEF = | |
PROJECT_LOGO = |
This file contains 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
/** | |
* Promise style method | |
*/ | |
- (void)animateUi | |
{ | |
const CGFloat valDestStatsBottom = self.conStatsBottomSpacing.constant; | |
const CGFloat valDestLeftArrowTrailing = self.conLeftArrowTrailing.constant; | |
const CGFloat valDestRightArrowLeading = self.conRightArrowLeading.constant; |
This file contains 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
/* | |
* Copyright 2015 The WebRTC Project Authors. All rights reserved. | |
* | |
* Use of this source code is governed by a BSD-style license | |
* that can be found in the LICENSE file in the root of the source | |
* tree. An additional intellectual property rights grant can be found | |
* in the file PATENTS. All contributing project authors may | |
* be found in the AUTHORS file in the root of the source tree. | |
*/ |
OlderNewer