- I have searched the issues of this repository and believe that this is not a duplicate.
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
//Directive | |
angularApp.directive('angularOdometer', function () { | |
return { | |
restrict: 'A', | |
link: function(scope, element, attrs) { | |
//Creates new instance of odometer for the element | |
new Odometer({el: element[0], value: scope[attrs.odometer]}); | |
//Watch for changes and update the element value (causing odometer to redraw) |
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
#!/bin/sh | |
#Your app id which can be found in your config.xml file (widget id) | |
app=com.ionicframework.myNewApp | |
pathToAPK=platforms/android/build/outputs/apk/android-debug.apk | |
echo "Running Ionic Build" | |
ionic build |
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
import React, { Component, PropTypes } from 'react'; | |
import MediaQuery from './media-query'; | |
class Example extends Component { | |
render() { | |
return ( | |
<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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta name="theme-color" content="#000000"> | |
<link rel="manifest" href="/manifest.json"> | |
<link rel="shortcut icon" href="/favicon.ico"> | |
<title>React App</title> |
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
const path = require('path'); | |
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
const DynamicCdnWebpackPlugin = require('dynamic-cdn-webpack-plugin'); | |
module.exports = { | |
entry: { | |
'app.js': './src/app.js' | |
}, |
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
const path = require('path'); | |
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
const DynamicCdnWebpackPlugin = require('dynamic-cdn-webpack-plugin'); | |
module.exports = { | |
entry: { | |
'app.js': './src/app.js' | |
}, |
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"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta name="theme-color" content="#000000"> | |
<link rel="manifest" href="/manifest.json"> | |
<link rel="shortcut icon" href="/favicon.ico"> | |
<title>React App</title> |
Before submitting a pull request, please make sure the following is done:
- You have merged in the latest changes from
master
. - Resolved any conflicts that may have happened from that merge.
- Ensure that you have run all tests and linting locally with
npm run test
andnpm run lint
.
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
# Lines starting with '#' are comments. | |
# Each line is a file pattern followed by one or more owners. | |
# These owners will be the default owners for everything in the repo. | |
* @defunkt | |
# Order is important. The last matching pattern has the most precedence. | |
# So if a pull request only touches javascript files, only these owners | |
# will be requested to review. | |
*.js @octocat @github/js |
OlderNewer