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'; | |
var autoprefixer = require('autoprefixer'); | |
var webpack = require('webpack'); | |
var HtmlWebpackPlugin = require('html-webpack-plugin'); | |
var CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin'); | |
var InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin'); | |
var WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin'); | |
var getClientEnvironment = require('./env'); | |
var paths = require('./paths'); |
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.exports = { | |
servers: { | |
one: { | |
host: 'YOUR_SERVER_IP_HERE', | |
username: 'YOUR_USERNAME_HERE', | |
pem: 'RELATIONAL PATH TO YOUR .pem FILE (better to put it into your mup folder and write here "./file.pem")', (or put the password below) | |
// password: '', | |
} | |
}, |
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
// (C) Copyright 2014-2016 Hewlett Packard Enterprise Development LP | |
import React, { Component, PropTypes } from 'react'; | |
import classnames from 'classnames'; | |
import CSSClassnames from '../utils/CSSClassnames'; | |
import Props from '../utils/Props'; | |
import Box from './Box'; | |
import Label from './Label'; | |
import Heading from './Heading'; | |
import Headline from './Headline'; |
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
[email protected] # Packages every Meteor app needs to have | |
[email protected] # Packages for a great mobile UX | |
[email protected] # Reactive variable for tracker | |
[email protected] # Meteor's client-side reactive programming library | |
[email protected] # CSS minifier run for production mode | |
[email protected] # JS minifier run for production mode | |
[email protected] # ECMAScript 5 compatibility for older browsers. | |
static-html | |
[email protected] |
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
{ | |
"name": "adminpanel", | |
"private": true, | |
"main": "server.js", | |
"browser": "client.js", | |
"scripts": { | |
"start": "meteor run" | |
}, | |
"dependencies": { | |
"accounting": "^0.4.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
; | |
(function($, window, document, undefined) { | |
"use strict"; | |
var methods = { | |
codes: { | |
'a': 0x0627, | |
'b': 0x0628, | |
'c': 0x0686, |
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
function solution(A) { | |
var resultsArray = []; | |
var i; | |
for (i = 1; i < A.length - 1; i++) { | |
var leftArray = []; | |
var rigthArray = []; | |
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
check(data, Array); | |
for (let i = 0; i < data.length; i++) { | |
let item = data[i]; | |
let location_exists = Locations.findOne({ | |
name: item.LOCATION | |
}); | |
let district_exists = Districts.findOne({ | |
name: item.DISTRICT | |
}); |
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
<!-- BEFORE ELSE --> | |
<!-- BEFORE ELSE --> | |
<!-- BEFORE ELSE --> | |
<!-- BEFORE ELSE --> | |
<div id="test_passing_modal" class="modal fade"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-body"> | |
<div class="mod text-center"> | |
<div class="row test_unit"><a href="" class="button-exit button-close">Назад</a> |
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
tableMethods.contenteditable2({ | |
data_attr: 'prices', | |
collection: Transfers, | |
template: Template.tableInsiderTransfers, | |
editTargetObj: { ru: "цена" }, | |
type: String | |
}); |