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
.titanic{ | |
float:none; | |
} | |
.kkk { | |
color: white!important; | |
} | |
.harry-potter-invisibility-cloak { | |
display: none; | |
} | |
.sniper-mode-engaged { |
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
#pagelet_bluebar, .fbDockWrapperRight, #rightCol, #fbChatSidebar{ | |
display: none !important; | |
} | |
.wmMasterView{ | |
width: 82px !important; | |
} | |
#wmMasterViewThreadlist{ | |
width:17% !important; |
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-card-labels .card-label{ | |
width: auto !important; | |
font-size: 10px !important; | |
padding: 0px 5px !important; | |
line-height: 13px !important; | |
border-radius: 3px !important; | |
margin-top: 0px !important; | |
margin-bottom: 0px !important; | |
height: 13px !important | |
} |
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
app.service('YouTubeService', function ($q, $rootScope, $timeout, MockService, $cordovaOauth) { | |
const clientId = 'hidden'; | |
const youtubeScope = 'https://gdata.youtube.com'; | |
const serverKey = 'hidden'; | |
var isRealDevice = window.cordova !== undefined; | |
var results = []; | |
var pageTokens = []; | |
var initializeDefer; |
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
<div class="c-drawer" ng-click="vm.toggleDrawer()" ng-class="{'c-drawer--opened':vm.drawerOpened}" > | |
<hr class="c-drawer__line c-drawer__line--1"/> | |
<hr class="c-drawer__line c-drawer__line--2"/> | |
<hr class="c-drawer__line c-drawer__line--3"/> | |
</div> |
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
'use strict'; | |
import gulp from 'gulp'; | |
import webpack from 'webpack-stream'; | |
import path from 'path'; | |
import sync from 'run-sequence'; | |
import serve from 'browser-sync'; | |
import rename from 'gulp-rename'; | |
import template from 'gulp-template'; | |
import fs from 'fs'; |
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 variables from './variables.config'; | |
import Color from 'color'; | |
const debuggingColors = []; | |
const randomColor = () => { | |
return '#' + (Math.random() * 0xFFFFFF << 0).toString(16); | |
}; | |
const getColor = (color) => { |
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 is from '../../plugins/is'; | |
const minWidth = 'min-width'; | |
const maxWidth = 'max-width'; | |
const query = (size, measure) => { | |
return `@media (${measure}: ${size}px)` | |
}; | |
const matchMedia = (val) => { |
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
//external libs | |
import Q from 'q'; | |
import axios from 'axios'; | |
import _ from 'lodash'; | |
//modules | |
import CONSTANTS from '../helpers/constants'; | |
import Notifications from '../helpers/notifications-service'; | |
import ApiCache from '../helpers/cache'; | |
import {setLocation} from '../helpers/location-changer'; |
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 * as types from '../actions/actionTypes'; | |
const initialState = { | |
count: 0 | |
}; | |
export default counter = (state = initialState, action = {}) => { | |
return { | |
[types.INCREMENT]: { | |
...state, |
OlderNewer