text
stringlengths 0
14.1k
|
---|
background: linear-gradient(to bottom, #be2626, #a92222); |
padding: 0.5em 1.2em; |
color: white; |
} |
.dropzone .dz-preview .dz-error-message:after { |
content: ''; |
position: absolute; |
top: -6px; |
left: 64px; |
width: 0; |
height: 0; |
border-left: 6px solid transparent; |
border-right: 6px solid transparent; |
border-bottom: 6px solid #be2626; |
} |
" isc |
kartta-labs/iD build.js 591 "/* eslint-disable no-console */ |
const buildData = require('./build_data'); |
const buildSrc = require('./build_src'); |
const buildCSS = require('./build_css'); |
let _currBuild = null; |
// if called directly, do the thing. |
buildAll(); |
function buildAll() { |
if (_currBuild) return _currBuild; |
return _currBuild = |
Promise.resolve() |
.then(() => buildCSS()) |
.then(() => buildData()) |
.then(() => buildSrc()) |
.then(() => _currBuild = null) |
.catch((err) => { |
console.error(err); |
_currBuild = null; |
process.exit(1); |
}); |
} |
module.exports = buildAll; |
" isc |
wvuRc2/rc2client source/rc2/model/RCWorkspaceCache.h 639 "// |
// RCWorkspaceCache.h |
// |
// Created by Mark Lilback on 12/12/11. |
// Copyright (c) 2011 . All rights reserved. |
// |
#import ""_RCWorkspaceCache.h"" |
@interface RCWorkspaceCache : _RCWorkspaceCache |
//if multiple values are to be set, it best to get properties, set them, and then call setProperties |
//each call to setProperties serializes a plist |
@property (nonatomic, strong) NSMutableDictionary *properties; |
-(id)propertyForKey:(NSString*)key; |
//removes property if value is nil |
-(void)setProperty:(id)value forKey:(NSString*)key; |
-(BOOL)boolPropertyForKey:(NSString*)key; |
-(void)setBoolProperty:(BOOL)val forKey:(NSString*)key; |
@end |
" isc |
damienmortini/dlib node_modules/lottie-web/player/js/utils/text/LetterProps.js 1212 "function LetterProps(o, sw, sc, fc, m, p) { |
this.o = o; |
this.sw = sw; |
this.sc = sc; |
this.fc = fc; |
this.m = m; |
this.p = p; |
this._mdf = { |
o: true, |
sw: !!sw, |
sc: !!sc, |
fc: !!fc, |
m: true, |
p: true, |
}; |
} |
LetterProps.prototype.update = function (o, sw, sc, fc, m, p) { |
this._mdf.o = false; |
this._mdf.sw = false; |
this._mdf.sc = false; |
this._mdf.fc = false; |
this._mdf.m = false; |
this._mdf.p = false; |
var updated = false; |
if (this.o !== o) { |
this.o = o; |
this._mdf.o = true; |
updated = true; |
} |
if (this.sw !== sw) { |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.