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
[Route("/tmp")] | |
public class Tmp:IReturn<TmpResponse> | |
{ | |
public string Param { get; set; } | |
} | |
public class TmpResponse | |
{ | |
public Dictionary<KeyClass, List<ResponseData>> ResponseOptions { get; set; } | |
} |
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
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<polymer-element name="canvas-section"> | |
<template> | |
<style> | |
:host { |
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
"dependencies": { | |
"autoprefixer-core": "^5.1.8", | |
"csswring": "^3.0.2", | |
"gulp": "~3.8.10", | |
"postcss": "^4.0.4", | |
"postcss-custom-properties": "^3.0.1", | |
"postcss-import": "^5.0.2", | |
"postcss-mixins": "^0.1.1", | |
"postcss-nested": "^0.2.1", | |
}, |
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
const initPosts = [{ | |
id: 1, | |
author: 1, | |
comments:[1,2] | |
} | |
] | |
const initComments = [ | |
{id: 1, author: 1}, | |
{id: 2, author: 2} |
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
import {Component} from 'angular2/angular2' | |
@Component({ | |
selector: 'child', | |
template: '<div (click)='passNumber.next(num)'/>', | |
}) | |
export default class Login { | |
public num: number = 1 | |
@Output() passNumber = new EventEmitter() |
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
.title { | |
border: 1px solid red; | |
} |
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
.title_urururu_first_random_timestamp { | |
border: 1px solid red; | |
} | |
.title_arara_second_random_timestamp { | |
border: 3px dashed blue; | |
} |
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
{ | |
test: /\.css$/, | |
loader: ExtractTextPlugin.extract(‘style-loader’, ‘!css-loader?modules&importLoaders=1!stylus-loader’) | |
}, |
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
.title { | |
border: 1px solid red; | |
} |
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
:global(.myClass) { | |
//here go styles for all .myClass classes | |
} |
OlderNewer