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
// ==UserScript== | |
// @name Teamflow FPS tweak | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description Adjust min/max FPS in Teamflow | |
// @author Chris Thielen | |
// @match https://app.teamflowhq.com/netflix* | |
// @grant none | |
// ==/UserScript== |
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
"use strict"; | |
exports.__esModule = true; | |
var angular = require("angular"); | |
var ngModule = angular.module('ct.ui.router.extras.previous', ['ct.ui.router.extras.core', 'ct.ui.router.extras.transition']); | |
function PreviousStateService($state, $q, $transitions) { | |
var previous = null; | |
var lastPrevious = null; | |
var memos = {}; | |
$transitions.onStart({}, function ($transition$) { | |
var fromState = $transition$.from().$$state(); |
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
{ | |
"devDependencies": { | |
"webpack": "^2.6.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
/** | |
* State-based routing for Angular 2 | |
* @version v1.0.0-beta.5 | |
* @link https://ui-router.github.io/ng2 | |
* @license MIT License, http://www.opensource.org/licenses/MIT | |
*/ | |
(function (global, factory) { | |
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('rxjs/ReplaySubject'), require('rxjs/BehaviorSubject'), require('rxjs/observable/of'), require('rxjs/observable/fromPromise'), require('rxjs/observable/combineLatest'), require('rxjs/operator/switchMap'), require('rxjs/operator/mergeMap'), require('rxjs/operator/map'), require('rxjs/operator/concat'), require('rxjs/Observable'), require('rxjs/operator/concatAll'), require('rxjs/operator/every'), require('rxjs/operator/last'), require('rxjs/operator/mergeAll'), require('rxjs/add/operator/mergeMap'), require('rxjs/add/operator/map')) : | |
typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@angular/common', 'rxjs/ReplaySubject', 'rxjs/Behavi |
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
/*! | |
* State-based routing for Angular 2 | |
* @version v1.0.0-beta.3 | |
* @link https://ui-router.github.io | |
* @license MIT License, http://www.opensource.org/licenses/MIT | |
*/ | |
(function webpackUniversalModuleDefinition(root, factory) { | |
if(typeof exports === 'object' && typeof module === 'object') | |
module.exports = factory(require("@angular/core"), require("rxjs/Rx"), require("@angular/common")); | |
else if(typeof define === 'function' && define.amd) |
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
/*! | |
* State-based routing for AngularJS | |
* @version v1.0.0-beta.2 | |
* @link https://ui-router.github.io | |
* @license MIT License, http://www.opensource.org/licenses/MIT | |
*/ | |
(function webpackUniversalModuleDefinition(root, factory) { | |
if(typeof exports === 'object' && typeof module === 'object') | |
module.exports = factory(); | |
else if(typeof define === 'function' && define.amd) |
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 OtherwiseRouterProvider { | |
constructor($urlRouterProvider) { | |
this.otherwiseRouters = []; | |
this.$urlRouterProvider = $urlRouterProvider; | |
} | |
registerRouter(func) { | |
this.otherwiseRouters.unshift(func); | |
return this; | |
} |
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
/** @module state */ /** for typedoc */ | |
import {ParamDeclaration} from "../params/interface"; | |
import {State} from "./stateObject"; | |
import {ViewContext} from "../view/interface"; | |
import {IInjectable} from "../common/common"; | |
import {Transition} from "../transition/transition"; | |
import {TransitionStateHookFn} from "../transition/interface"; | |
import {ResolvePolicy, ResolvableLiteral} from "../resolve/interface"; | |
import {Resolvable} from "../resolve/resolvable"; |
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
; // <script src="//npmcdn.com/show-current-browser-url"></script> | |
(function() { | |
var div = document.createElement("div") | |
div.id = "document_location"; | |
div.style.position = "fixed"; | |
div.style.top = "0"; | |
div.style.left = "0"; | |
div.style.right = "0"; | |
div.style.height = "20px;"; |
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
// contact is a RevertableModel which is injected from the state's resolve data. | |
export class EditContactController{ | |
constructor($state, dialogService, Contacts, contact) { | |
this.$state = $state; | |
this.dialogService = dialogService; | |
this.Contacts = Contacts; | |
this.contact = contact.editableModel; | |
this.clearDirty = () => contact.clearDirty(); | |
} |
NewerOlder