<wysiwyg (onChangeText)="onChangeText($event)"></wysiwyg>
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
| #!/usr/bin/env node | |
| 'use strict'; | |
| var fs = require('fs'); | |
| var path = require('path'); | |
| fs.ensureDirSync = function (dir) { | |
| if (!fs.existsSync(dir)) { | |
| dir.split(path.sep).reduce(function (currentPath, folder) { | |
| currentPath += folder + path.sep; |
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
| set shell=/bin/sh | |
| set termguicolors | |
| set number | |
| set ruler | |
| set relativenumber | |
| set cursorline | |
| "set synmaxcol=1000 | |
| set clipboard=unnamed | |
| "set list listchars=tab:\ ,eol:¬,trail: |
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
| /* description: Parses end executes mathematical expressions. */ | |
| /* lexical grammar */ | |
| %lex | |
| %% | |
| \s+ /* skip whitespace */ | |
| [0-9]+("."[0-9]+)?\b return 'NUMBER' | |
| "true" return 'TRUE' | |
| "false" return 'FALSE' |
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
| # Stop | |
| net stop WAS | |
| # Start | |
| # net start W3SVC |
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
| #!/usr/bin/env node | |
| var fs = require('fs'), | |
| path = require('path'), | |
| cheerio = require('cheerio'), | |
| revHash = require('rev-hash'); | |
| var rootDir = path.resolve(__dirname, '../'); | |
| var wwwRootDir = path.resolve(rootDir, 'platforms', 'browser', 'www'); | |
| var buildDir = path.join(wwwRootDir, 'build'); |
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
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 12, | |
| // font family with optional fallbacks | |
| fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: 'rgba(248,28,229,0.8)', |
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
| using System.Web.Mvc; | |
| using Helpers; | |
| using System.Web.Security; | |
| namespace Project.Controllers { | |
| [AllowAnonymous] | |
| public class HomeController : Controller { | |
| [HttpGet] |
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 { Pipe, PipeTransform } from '@angular/core'; | |
| import { DomSanitizer, SafeHtml } from '@angular/platform-browser'; | |
| @Pipe({ | |
| name: 'sanitizeHtml' | |
| }) | |
| export class HtmlSanitizerPipe implements PipeTransform { | |
| constructor(private sanitizer: DomSanitizer) { | |
| } |
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=""> | |
| @Html.LabelFor(model => model.griv_idgrupoinv, htmlAttributes: new { @class = "" }) | |
| @Html.DropDownList("griv_idgrupoinv", new SelectList(ViewBag.GrupoInv, "Text", "Value"), new { @class = "form-control" }) | |
| </div> |