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
| #= require_self | |
| #= require_tree ./vendor/lib/ | |
| #= require_tree ./vendor/base/ | |
| #= require_tree ./behaviors | |
| #= require_tree ./templates | |
| #= require view | |
| #= require source | |
| window['<%= @namespace %>'] ?= {} | |
| window['<%= @namespace %>'].Player ?= {} |
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 = function(grunt) { | |
| grunt.loadNpmTasks( "grunt-jade" ) | |
| grunt.loadNpmTasks( "grunt-contrib-coffee" ) | |
| grunt.loadNpmTasks( "grunt-contrib-concat" ) | |
| grunt.loadNpmTasks( "grunt-contrib-uglify" ) | |
| grunt.loadNpmTasks( "grunt-contrib-less" ) | |
| grunt.loadNpmTasks( "grunt-contrib-watch" ) | |
| grunt.loadNpmTasks( "grunt-contrib-copy" ) |
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
| gem list | |
| *** LOCAL GEMS *** | |
| activemodel (3.2.8) | |
| activerecord (3.2.8) | |
| activesupport (3.2.8) | |
| acts_as_stripped (1.1.1) | |
| addressable (2.3.2) | |
| airbrake (3.1.2) |
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
| { | |
| "area": | |
| { | |
| "id":3119, | |
| "name":"Гвардейский изберательный участок N 8", | |
| "address":"пгт. Карпатский, Парниковый переулок, д 11", | |
| "page":4 | |
| }, | |
| "areaName":"москва", | |
| "timeCodes": [ |
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"?> | |
| <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"> | |
| <cross-domain-policy> | |
| <allow-access-from domain="*"/> | |
| </cross-domain-policy> |
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
| express = require 'express' | |
| namespace = require 'express-namespace' | |
| passport = require 'passport' | |
| http = require 'http' | |
| path = require 'path' | |
| pkg = require '../package.json' | |
| module.exports = app = express() | |
| app.configure 'development', -> |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDAFzKxv/si8EC5l8N60/c6tr2K094yvgaSoZLu0CytU2PuTu64s5JO0Qe4yFnID42ZPq7np8dRae0/xfmGsW6YTZkeOqiJKj97VyTnzi41CREGx1ueAsrdP/6iGLW6wTU230Ub3M71XvNtlTQOMw3L437kWEoVR7yAcNfBUrBw5LRiYuoZzV3Xcra62ZiyFtFhVYQRA/JaXNa1BCpRa4rXb8rCHkq2lrbFCea+o+sLUBpL4ElXbs6ynTZLEFpFSd0H0p8aHGnk11uNDfO72twkIMUir3hh5CtTtyVWZwa7ftq4hYPuWQEQPULAK+DDD26F0nlkUcWX1Qss9F0XZbUF in8174@192.168.215.210 |
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
| iMac-in8174:core-player-composer in8174$ bundle | |
| Fetching gem metadata from https://rubygems.org/..... | |
| Using coffee-script-source (1.3.3) | |
| Using multi_json (1.3.6) | |
| Using execjs (1.4.0) | |
| Using coffee-script (2.2.0) | |
| Using diff-lcs (1.1.3) | |
| Using ejs (1.1.1) | |
| Using git (1.2.5) | |
| Using hike (1.2.1) |
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
| /* | |
| * grunt-jade | |
| * https://github.com/phated/grunt-jade | |
| * | |
| * Copyright (c) 2012 Blaine Bublitz | |
| * Licensed under the MIT license. | |
| */ | |
| module.exports = function(grunt) { |
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
| jQuery(function ($) { | |
| var libs = [ | |
| $.getScript('//fancyapps.com/fancybox/lib/jquery.mousewheel-3.0.6.pack.js'), // загрузить на свой хост и прописать тут урл | |
| $.getScript('//fancyapps.com/fancybox/source/jquery.fancybox.pack.js?v=2.1.0') // загрузить на свой хост и прописать тут урл | |
| ]; | |
| $('<link rel="stylesheet" type="text/css" href="//fancyapps.com/fancybox/source/jquery.fancybox.css?v=2.1.0" />').appendTo(document.body); // загрузить на свой хост и прописать тут урл | |
| $ |