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 markers = []; | |
var geocoder = new google.maps.Geocoder(); | |
var local_search = new GlocalSearch(); | |
var default_point = new google.maps.LatLng(53.800651, -4.064941); | |
var default_map = { | |
zoom: 5, | |
center: default_point, | |
mapTypeControl: true, | |
mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}, | |
mapTypeId: google.maps.MapTypeId.ROADMAP |
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
/* | |
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. | |
For licensing, see LICENSE.html or http://ckeditor.com/license | |
*/ | |
CKEDITOR.editorConfig = function( config ) | |
{ | |
// Define changes to default configuration here. For example: | |
// config.language = 'fr'; | |
// config.uiColor = '#AADC6E'; |
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
<?php | |
/* | |
* 1. Find list line (about line 60) | |
*/ | |
$replace = '<script type="text/javascript" src="' . trim($this->settings['script_path']) . '"></script>' . NL; | |
/* | |
* 2. Add DIRECTLY UNDERNEATH IT | |
*/ |
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
# Standard database.yml file for MySQL-based Rails apps | |
# Development and Production environments share defaults | |
defaults: &defaults | |
adapter: mysql | |
encoding: utf8 | |
host: localhost | |
username: db_username | |
password: db_password |
NewerOlder