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
const api = window.ModuleApi; | |
const React = api.React; | |
const CoreStore = require('../../../stores/CoreStore.js'); | |
const CoreActions = require('../../../actions/CoreActions.js'); | |
const SideNavBar = require('./SideNavBar'); | |
const Chevron = require('./Chevron'); | |
const style = require("./Style"); | |
const MenuHeaders = require('../navigation_menu/MenuHeaders'); | |
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
//app.js | |
this.state.projectModalProps = { | |
showCreateProject: (input) => { | |
var modal = CoreStore.getShowProjectModal(); | |
if (input) { | |
modal = input; | |
CoreStore.projectModalVisibility = input; | |
} | |
if (modal === 'Languages') { |
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
//OnlineStatus.js | |
import React from 'react'; | |
import {Glyphicon} from 'react-bootstrap'; | |
// constant declaration | |
const style = { | |
textOffline: { | |
color: "var(--warning-color)", | |
display: "inline", | |
backgroundColor: 'var(--background-color-dark)', | |
outline: 'none', |
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
#!/bin/bash | |
# Usage: git md | |
# Goes in your bin folder, mine is /usr/bin/ | |
BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD) | |
git checkout origin/develop | |
git pull origin develop | |
npm run pull-apps | |
git checkout $BRANCH_NAME | |
git merge origin/develop |
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
{ | |
"1": "Paul, an apostle of Christ Jesus through the will of God, to God's holy people in Ephesus, who are faithful in Christ Jesus.\\f + \\ft Some early versions omit, \\fqa in Ephesus, \\fqa* but this expression is probably in Paul's original letter.\\f*", | |
"2": "Grace to you and peace from God our Father and the Lord Jesus Christ.", | |
"3": "May the God and Father of our Lord Jesus Christ be praised, who has blessed us with every spiritual blessing in the heavenly places in Christ.", | |
"4": "God chose us in him from the beginning of the world, that we may be holy and blameless in his sight in love \\f + \\ft Some interpreters place the phrase \\fqa in love \\fqa* with the next sentence, EPH 1:5 \\fqa In love God chose us ... \\f*.", | |
"5": "\\f + \\ft Some interpreters place the last phrase of EPH 1:4 \\fqa in love \\fqa* with verse 5 so that it reads, \\fqa In love God chose us ... \\f* God chose us beforehand for adoption as sons through Jesus Christ, according to the good pleasure of his will.", | |
"6" |
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
*** NOTE: DO NOT USE UNLESS YOU WANT TO NUKE YOUR TOOLS AND GET THE LATEST FROM MASTER BRANCH *** | |
git submodule deinit -f . && git submodule update --init | |
*** Reset a folder/file hard | |
git checkout origin/branch -- folder_path/* | |
*** Remove all local branches except develop *** | |
git branch | grep -v "develop" | xargs git branch -D |
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
https://username:[email protected]/username/reponame.git |
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
1. Choose a story, make it an epic | |
2. Assign tasks to epic, and put est. hours in title (Along with task label) | |
3. Put tasks from above in 'Sprint Task Backlog' pipeline | |
4. Put working tasks and epic in 'in progress' pipeline (Update hours regularly, close tasks when done) | |
5. When done with all tasks make a PR, and connect PR to epic above. | |
6. Using the assignees option, assign devs to review | |
7. After PR is reviewed and merged, drag story to pending build |
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
import React, {Component} from 'react'; | |
// import {optimizeSelections, normalizeString} from './utils/selectionHelpers'; | |
// import isEqual from 'deep-equal'; | |
// import usfmjs from 'usfm-js'; | |
import {VerseCheck} from 'tc-ui-toolkit'; | |
class App extends Component { | |
// constructor(props) { | |
// super(props); |
OlderNewer