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
/// <reference path="node_modules/typescript/lib/lib.es6.d.ts" /> | |
declare module "src/Log" { | |
export default class Log { | |
static NONE: number; | |
static ERROR: number; | |
static WARN: number; | |
static INFO: number; | |
static reset(): void; | |
static level: any; | |
static logger: any; |
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
//bootstrap 3.1.0 modal dialog context for Durandal | |
define(['plugins/dialog'], function (dialog) { | |
/** | |
* @class ScrollDialogContext | |
*/ | |
dialog.addContext('bootstrapDialog', { | |
blockoutOpacity: .2, | |
removeDelay: 300, | |
/** |