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
<select data-required="false" name="state" id="state"> | |
<option selected="selected" value="">--</option> | |
<option value="AL">Alabama</option> | |
<option value="AK">Alaska</option> | |
<option value="AZ">Arizona</option> | |
<option value="AR">Arkansas</option> | |
<option value="CA">California</option> | |
<option value="CO">Colorado</option> | |
<option value="CT">Connecticut</option> | |
<option value="DE">Delaware</option> |
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
<cfoutput> | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Bootstrap, from Twitter</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> |
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
/** | |
* @persistent false | |
* @extends baseController | |
* @output false | |
* @accessors true | |
*/ | |
component { | |
property name="foo" type="string"; | |
property name="timestamp" type="datetime"; |
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
component{ | |
property name="users" fieldtype="many-to-many" cfc="users" singularname="user" | |
type="array" linktable="tblUsers_Roles" cascade="none" | |
fkcolumnid="roleID" inversejoincolumn="accountID"; | |
} |
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 ( not StructKeyExists(request.context, '$') ) { | |
request.context.$ = application.serviceFactory.getBean('muraScope'); | |
if ( StructKeyExists(session, 'siteid') ) { | |
request.context.$.init(session.siteid); | |
} else { | |
request.context.$.init('default'); | |
}; | |
}; |
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 Refinery | |
module Casestudies | |
class CasestudiesController < ::ApplicationController | |
layout :selectLayout | |
before_action :find_all_casestudies | |
before_action :find_page | |
def index | |
# you can use meta fields from your model instead (e.g. browser_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
class Appointment < ActiveRecord::Base | |
include Rails.application.routes.url_helpers | |
validates :name, presence: true | |
validates :phone_number, presence: true | |
validates :time, presence: true | |
# After initialization, set default values | |
after_initialize :set_default_values | |
before_create :confirmation_text |
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
var map, markers, geoXml, mc; | |
var defaultZoom = 7; | |
var maxZoom = 20; | |
var loadModal = function(elem, evt){ | |
evt.preventDefault(); | |
$("#videoModal").modal({remote: $(elem).attr('href')}); | |
}; | |
$(".explore-index").ready( function(){ |
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
// | |
// PhotosViewController.h | |
// EMSCheck | |
// | |
// Created by Joe Brislin on 5/5/14. | |
// Copyright (c) 2014 BlueRidge Interactive. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |
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
// | |
// DataService.h | |
// TradeIn | |
// | |
// Created by Joe Brislin on 10/29/14. | |
// Copyright (c) 2014 BlueRidge Interactive. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
#import "PostEvaluation.h" |
OlderNewer