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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class Player : MonoBehaviour { | |
// public class LevelBoundary |
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
class CompaniesController < ApplicationController | |
before_action :authenticate_api_v1_user!, :set_company, only: [:show, :update, :destroy] | |
# GET /companies | |
# GET /companies.json | |
def index | |
@companies = Company.all | |
end | |
# GET /companies/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
import { NgModule } from '@angular/core'; | |
import { Routes, RouterModule } from '@angular/router'; | |
import { NotfoundComponent } from './notfound/notfound.component'; | |
import {HomeComponent} from "./home/home.component"; | |
import { ProfileComponent } from './profile/profile.component'; | |
import { UserEditComponent } from './users/user-edit/user-edit.component'; | |
import { UserShowComponent } from './users/user-show/user-show.component'; | |
import { Angular2TokenService } from 'angular2-token'; |
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
package com.gabrielmadeira.seupedido; | |
import android.app.ProgressDialog; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.os.AsyncTask; | |
import android.os.SystemClock; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.util.Log; |
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
<% if @tipo == "devolucao" %> | |
<div class="nested-fields"> | |
<div class="row listCod" data-cod="<%= f.object.barcode %>"> | |
<%= f.input :id, :as => :hidden, input_html: { class: 'id_detail_ror' } %> | |
<div class="small-6 columns show-for-small-only"> | |
<%= f.input :barcode, label: "Cod Barras", input_html: { class: 'barcode_ror_dev' } %> | |
</div> | |
<%= f.input :order_id, :as => :hidden, input_html: { class: 'order_id_ror_dev' } %> | |
<%= f.input :preco, :as => :hidden,input_html: { class: 'preco_ror_dev' } %> | |
<div class="show-for-medium-up small-2 columns"> |
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
<% if @tipo == "devolucao" %> | |
<div class="nested-fields"> | |
<div class="row listCod" data-cod="<%= f.object.barcode %>"> | |
<div class="small-6 columns show-for-small-only"> | |
<%= f.input :barcode, label: "Cod Barras", input_html: { class: 'barcode_ror_dev' } %> | |
</div> | |
<%= f.input :order_id, :as => :hidden, input_html: { class: 'order_id_ror_dev' } %> | |
<div class="show-for-medium-up small-2 columns"> | |
<%= f.input :cod_produto, label: "Produto", input_html: { class: 'cod_produto_ror_dev' } %> | |
</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
<body> | |
<div class="contain-to-grid sticky"> | |
<nav class="top-bar" data-topbar role="navigation"> | |
<ul class="title-area"> | |
<li class="name"> | |
<h1><a href="/">Jolét</a></li></h1> | |
</li> | |
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone --> | |
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li> | |
</ul> |
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
// This is a manifest file that'll be compiled into application.js, which will include all the files | |
// listed below. | |
// | |
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, | |
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. | |
// | |
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the | |
// compiled file. | |
// | |
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details |
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.0" /> | |
<title><%= content_for?(:title) ? yield(:title) : "Jolét" %></title> | |
<%= Gon::Base.render_data({}) %> |
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
<% if @tipo == "devolucao" %> | |
<div class="nested-fields"> | |
<div class="row listCod" data-cod="<%= f.object.barcode %>"> | |
<div class="small-6 columns show-for-small-only"> | |
<%= f.input :barcode, label: "Cod Barras", input_html: { class: 'barcode_ror_dev' } %> | |
</div> | |
<%= f.input :order_id, :as => :hidden, input_html: { class: 'order_id_ror_dev' } %> | |
<div class="show-for-medium-up small-2 columns"> | |
<%= f.input :cod_produto, label: "Produto", input_html: { class: 'cod_produto_ror_dev' } %> | |
</div> |
NewerOlder