This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins directory.
{% youtube oHg5SJYRHA0 %}
| /* | |
| jQuery UI Autocomplete AutoFill extension | |
| automatically fills in the input box when only one suggestion is to be shown | |
| */ | |
| ;(function($) { | |
| $.extend($.ui.autocomplete.options, {autoFill: true}); | |
| $.extend($.ui.autocomplete.prototype, { | |
| _response_original: $.ui.autocomplete.prototype._response, |
This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins directory.
{% youtube oHg5SJYRHA0 %}
| /// <reference path="../../../lib/jquery-1.2.6.js" /> | |
| /* | |
| Masked Input plugin for jQuery | |
| Copyright (c) 2007-2009 Josh Bush (digitalbush.com) | |
| Licensed under the MIT license (http://digitalbush.com/projects/masked-input-plugin/#license) | |
| Version: 1.2.2 (03/09/2009 22:39:06) | |
| */ | |
| (function($) { | |
| var pasteEventName = ($.browser.msie ? 'paste' : 'input') + ".mask"; | |
| var iPhone = (window.orientation != undefined); |
| <?php | |
| // API access key from Google API's Console | |
| define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' ); | |
| $registrationIds = array( $_GET['id'] ); | |
| // prep the bundle | |
| $msg = array |
| public static String clearTurkishChars(String str) { | |
| String ret = str; | |
| char[] turkishChars = new char[] {0x131, 0x130, 0xFC, 0xDC, 0xF6, 0xD6, 0x15F, 0x15E, 0xE7, 0xC7, 0x11F, 0x11E}; | |
| char[] englishChars = new char[] {'i', 'I', 'u', 'U', 'o', 'O', 's', 'S', 'c', 'C', 'g', 'G'}; | |
| for (int i = 0; i < turkishChars.length; i++) { | |
| ret = ret.replaceAll(new String(new char[]{turkishChars[i]}), new String(new char[]{englishChars[i]})); | |
| } | |
| return ret; | |
| } |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>Popup Example</title> | |
| </head> | |
| <body> | |
| <script> | |
| function popupCallback(str){ | |
| alert("This is callback:" + str); | |
| } |
| { | |
| "title": "QLight Project Structure", | |
| "visbility": "public" | |
| } |