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
#if __has_include("RCTBridgeModule.h") | |
#import "RCTBridgeModule.h" | |
#else | |
#import <React/RCTBridgeModule.h> | |
#endif | |
#import <MobileRTC/MobileRTCAuthService.h> | |
#import <MobileRTC/MobileRTC.h> | |
@interface ZoomSDKWrapper : NSObject <RCTBridgeModule, MobileRTCAuthDelegate, MobileRTCMeetingServiceDelegate> | |
@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
@mixin baseline($lineheight, $spacing: 1) { | |
line-height: $lineheight; | |
&:before { | |
content:''; | |
display: inline-block; | |
vertical-align: baseline; | |
height: $lineheight*$spacing; | |
} |
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
# sample DarkIce configuration file, edit for your needs before using | |
# see the darkice.cfg man page for details | |
# this section describes general aspects of the live streaming session | |
[general] | |
duration = 0 # duration of encoding, in seconds. 0 means forever | |
bufferSecs = 2 # size of internal slip buffer, in seconds | |
reconnect = yes # reconnect to the server(s) if disconnected | |
# this section describes the audio input that will be streamed |
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
@font-face { | |
font-family: 'Trade Gothic Condenced'; | |
src: url('../fonts/TradeGothicCondBold/tradegothicltstd-bdcn20.eot'); | |
src: url('../fonts/TradeGothicCondBold/tradegothicltstd-bdcn20.eot') format('embedded-opentype'), | |
url('../fonts/TradeGothicCondBold/tradegothicltstd-bdcn20.woff2') format('woff2'), | |
url('../fonts/TradeGothicCondBold/tradegothicltstd-bdcn20.woff') format('woff'), | |
url('../fonts/TradeGothicCondBold/tradegothicltstd-bdcn20.ttf') format('truetype'), | |
url('../fonts/TradeGothicCondBold/tradegothicltstd-bdcn20.svg#TradeGothicLTStdBoldCondensedNo.20') format('svg'); | |
} |
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
artxApp.directive('artxMobileSlider', function() { | |
return { | |
restrict: 'A', | |
replace: false, | |
scope: {}, | |
controller: ['$scope', '$http', function($scope, $http) {}], | |
link: function(scope, element, attrs){ | |
scope.touchStart = null |
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
B.module = { | |
heavy: false, | |
values: { | |
amount: new B.valueSlider(0, 100, 10, "amount") | |
}, | |
initialize: function() { | |
}, | |
render: function() { |
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
@import "compass/utilities/sprites"; // Include compass sprite helpers | |
@import "compass/css3/background-size"; // Include helper to calc background size | |
$retina-pixel-ratio: 2 !default; | |
// http://compass-style.org/reference/compass/helpers/sprites/ | |
@mixin get-sprite($map, $sprite, $retina: false, $offset-x: 0, $offset-y: 0, $repeat: no-repeat, $height: true, $width: true) { | |
//http://compass-style.org/reference/compass/helpers/sprites/#sprite-file |
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
<select name="country" id="country" size="1" > | |
<option value="none">CHOOSE COUNTRY</option> | |
<option value="16">Albania</option> | |
<option value="18">Algeria</option> | |
<option value="18">Argentina</option> | |
<option value="18">Australia</option> | |
<option value="18">Austria</option> | |
<option value="18">Azerbaijan</option> | |
<option value="18">Bahamas</option> | |
<option value="18">Belarus</option> |
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
class binory.Controller | |
# Subscriber | |
_(Controller.prototype).defaults binory.Subscriber | |
model: null | |
collection: null | |
view: null | |
currentId: null |
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
// Compile Coffescript | |
function compileCoffee() { | |
snockets.getConcatenation('public/javascripts/app.coffee', { | |
minify: false, | |
async: false | |
}, function(err, js) { | |
fs.writeFile("public/javascripts/app.js", js, function(err) { | |
if(err) { | |
console.log(err); | |
} |
NewerOlder