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
/** | |
* SyntaxHighlighter | |
* http://alexgorbatchev.com/SyntaxHighlighter | |
* | |
* SyntaxHighlighter is donationware. If you are using it, please donate. | |
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html | |
* | |
* @version | |
* 3.0.83 (July 02 2010) | |
* |
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
/** | |
* SyntaxHighlighter | |
* http://alexgorbatchev.com/SyntaxHighlighter | |
* | |
* SyntaxHighlighter is donationware. If you are using it, please donate. | |
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html | |
* | |
* @version | |
* 3.0.83 (July 02 2010) | |
* |
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
/** | |
* SyntaxHighlighter | |
* http://alexgorbatchev.com/SyntaxHighlighter | |
* | |
* SyntaxHighlighter is donationware. If you are using it, please donate. | |
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html | |
* | |
* @version | |
* 3.0.83 (July 02 2010) | |
* |
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
/** | |
* SyntaxHighlighter | |
* http://alexgorbatchev.com/SyntaxHighlighter | |
* | |
* SyntaxHighlighter is donationware. If you are using it, please donate. | |
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html | |
* | |
* @version | |
* 3.0.83 (July 02 2010) | |
* |
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='../../../bower_components/polymer/polymer.html'> | |
<link rel='import' href="../../../bower_components/iron-icons/iron-icons.html"> | |
<link rel='import' href="../../../bower_components/iron-validatable-behavior/iron-validatable-behavior.html"> | |
<link rel='import' href="../../../bower_components/iron-form-element-behavior/iron-form-element-behavior.html"> | |
<link rel='import' href="../../../bower_components/paper-ripple/paper-ripple.html"> | |
<!-- | |
Custom Polymer element. | |
Element mimics material design UI of the Polymer iron-input. | |
Element is validatable, read only and has flexible width (width would be determined by selected item). |
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="../../../bower_components/polymer/polymer.html"> | |
<link rel='import' href="../../../bower_components/paper-menu-button/paper-menu-button.html"> | |
<link rel='import' href="../../../bower_components/paper-item/paper-item.html"> | |
<link rel='import' href="../../../bower_components/iron-icons/iron-icons.html"> | |
<link rel='import' href="../../../bower_components/paper-material/paper-material.html"> | |
<link rel='import' href="../../../bower_components/iron-selector/iron-selector.html"> | |
<link rel='import' href="../rg-paper-input-search.html"> | |
<link rel='import' href="rg-select-input.html"> | |
<!-- |
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
.projects-assets-nav-button { | |
text-align: center; | |
color: rgba(255,255,255,0.8); | |
cursor: pointer; | |
font-size: 4em; | |
line-height: 1em; | |
} | |
.projects-assets-nav-button:hover { | |
color: rgb(252, 236, 60); |
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
define(function (require, exports, module) { | |
'use strict'; | |
var Surface = require('famous/core/Surface'); | |
var StateModifier = require('famous/modifiers/stateModifier'); | |
var Transform = require('famous/core/Transform'); | |
var EventHandler = require('famous/core/EventHandler'); | |
var OptionsManager = require('famous/core/OptionsManager'); | |
var View = require('famous/core/View'); | |
var ContainerSurface = require('famous/surfaces/ContainerSurface'); |
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
/** | |
* This Source Code is licensed under the MIT license. If a copy of the | |
* MIT-license was not distributed with this file, You can obtain one at: | |
* http://opensource.org/licenses/mit-license.html. | |
* | |
* @author: Oleksandr Zinchenko (Qvatra) | |
* @license MIT | |
*/ | |
/*global console*/ |
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
var fs = require('fs'); | |
var path = require('path'); | |
var exec = require('child_process').exec; | |
var archiver = require('archiver'); //npm install archiver | |
var prompt = require('prompt'); //npm install prompt | |
var appVersion; | |
var androidStoreVersion; | |
var device; | |
var mode; |