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="div_historial"> | |
<div ng-repeat="coment in coments"> | |
<!-- StaffOf --> | |
<div class="retroalimentacion" ng-if="!coment.ifStaff"> | |
<div class="avatar_staff"></div> | |
<div class="retro_cliente"> | |
<p class="user_">{{ coment.message }}</p> | |
</div> | |
</div> | |
<!-- Ciente --> |
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
(function(){ | |
'use strict'; | |
angular | |
.module('module') | |
.directive('soComents', soComents); | |
function soComents(){ | |
return{ |
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
(function(){ | |
angular | |
.module('evaluon') | |
.value('imgUrlBase', 'http://186.154.240.187:1045') | |
.filter('image', image); | |
function image(imgUrlBase) { | |
return function(img){ | |
return '{0}/{1}'.format(imgUrlBase, img); |
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
var gulp = require('gulp-help')(require('gulp')) | |
, browserSync = require('browser-sync') | |
, jshint = require('gulp-jshint') | |
, inject = require('gulp-inject') | |
, wiredep = require('wiredep').stream | |
, templateCache = require('gulp-angular-templatecache') | |
, gulpif = require('gulp-if') | |
, minifyCss = require('gulp-minify-css') | |
, useref = require('gulp-useref') | |
, uglify = require('gulp-uglify') |
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 Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
<template bindable="open"> | |
<div if.bind="open" class="cd-document"> | |
<button class="mdl-button mdl-js-button mdl-button--icon cd-document__close" click.trigger="close()"> | |
<i class="material-icons">close</i> | |
</button> | |
<div class="cd-document__title"> | |
<div class="cd-document__title__image"> | |
<i class="material-icons">image</i> | |
image | |
</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'; | |
var rp = require('request-promise'); | |
module.exports = function(data, userId){ | |
return rp({ | |
method: 'POST', | |
uri: 'https://onesignal.com/api/v1/notifications', | |
headers: { | |
'Content-Type': 'application/json', |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Challenge</title> | |
<style media="screen"> | |
ol > li:nth-child(3n){ | |
list-style-type: none; | |
} | |
ol > li:nth-child(5n){ |
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'; | |
var gulp = require('gulp-help')(require('gulp')) | |
, templateCache = require('gulp-angular-templatecache') | |
, browserSync = require('browser-sync').create() | |
, uglify = require('gulp-uglify') | |
, gulpsync = require('gulp-sync')(gulp) | |
, cssmin = require('gulp-cssmin') | |
, rename = require('gulp-rename') | |
, concat = require('gulp-concat') |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Alpha Component</key> | |
<real>1</real> | |
<key>Blue Component</key> | |
<real>0.39215686917304993</real> |
OlderNewer