code
stringlengths
1
2.08M
language
stringclasses
1 value
define(["exports", "./_base/kernel", "./_base/sniff", "./_base/lang", "./dom", "./dom-style", "./dom-construct", "./_base/connect"], function(exports, dojo, has, lang, dom, style, ctr, conn){ // module: // dojo/dom-prop // summary: // This module defines the core dojo DOM properties API. // Indirectly dep...
JavaScript
define(["../../_base/array", "../../_base/lang", "../../_base/Deferred" ], function(array, lang, Deferred) { // module: // dojo/store/util/QueryResults // summary: // The module defines a query results wrapper var util = lang.getObject("dojo.store.util", true); util.QueryResults = function(results){ ...
JavaScript
define(["../../_base/array"], function(arrayUtil) { // module: // dojo/store/util/SimpleQueryEngine // summary: // The module defines a simple filtering query engine for object stores. return function(query, options){ // summary: // Simple query engine that matches using filter functions, named fil...
JavaScript
define(["../_base/declare", "./util/QueryResults", "./util/SimpleQueryEngine"], function(declare, QueryResults, SimpleQueryEngine) { // module: // dojo/store/Memory // summary: // The module defines an in-memory object store. return declare("dojo.store.Memory", null, { // summary: // This is a basi...
JavaScript
define(["../_base/xhr", "../json", "../_base/declare", "./util/QueryResults" ], function(xhr, JSON, declare, QueryResults) { // module: // dojo/store/JsonRest // summary: // The module defines a JSON/REST based object store return declare("dojo.store.JsonRest", null, { // summary: // This is a basi...
JavaScript
define(["./has"], function(has){ "use strict"; var hasJSON = typeof JSON != "undefined"; has.add("json-parse", hasJSON); // all the parsers work fine // Firefox 3.5/Gecko 1.9 fails to use replacer in stringify properly https://bugzilla.mozilla.org/show_bug.cgi?id=509184 has.add("json-stringify", hasJSON && JSON.s...
JavaScript
define(['./has'], function(has){ var global = this, doc = document, readyStates = { 'loaded': 1, 'complete': 1 }, fixReadyState = typeof doc.readyState != "string", ready = !!readyStates[doc.readyState]; // For FF <= 3.5 if(fixReadyState){ doc.readyState = "loading"; } if(!ready){ var readyQ = [], tests...
JavaScript
define([], function(){ // TODOC: after/before/around return object // TODOC: after/before/around param types. /*===== dojo.aspect = { // summary: provides aspect oriented programming functionality, allowing for // one to add before, around, or after advice on existing methods. // // example: // | define(...
JavaScript
define(["../_base/kernel", "require", "../_base/html", "../_base/sniff", "../_base/array", "../_base/lang", "../_base/event", "../_base/unload"], function(dojo, require) { // module: // dojo/_firebug/firebug // summary: // FIREBUG LITE // summary: Firebug Lite, the baby brother to Joe Hewitt's Firebug for Mozilla...
JavaScript
define(["exports", "./_base/sniff", "./_base/lang", "./dom", "./dom-style", "./dom-prop"], function(exports, has, lang, dom, style, prop){ // module: // dojo/dom-attr // summary: // This module defines the core dojo DOM attributes API. // ============================= // Element attribute Functions // =====...
JavaScript
define([ "dojo/_base/array", "dojo/_base/config", // defaultDuration "../registry", ".." // for setting exports to dijit namespace ], function(array, config, registry, dijit){ // module: // dijit/_base/manager // summary: // Shim to methods on registry, plus a few other declarations. // New code should acc...
JavaScript
define([ "dojo/_base/kernel" ], function(dojo){ // module: // dijit // summary: // The dijit package main module return dojo.dijit; });
JavaScript
define([ "dojo/_base/lang", // lang.getObject "dojo/touch", "./_WidgetBase", "dojo/string", // string.substitute string.trim "dojo/cache", // dojo.cache "dojo/_base/array", // array.forEach "dojo/_base/declare", // declare "dojo/dom-construct", // domConstruct.destroy, domConstruct.toDom "dojo/_base/sniff", //...
JavaScript
define([ "require", // require.toUrl "dojo/_base/array", // array.forEach array.map "dojo/aspect", "dojo/_base/config", // config.blankGif "dojo/_base/connect", // connect.connect "dojo/_base/declare", // declare "dojo/dom", // dom.byId "dojo/dom-attr", // domAttr.set domAttr.remove "dojo/dom-class", // domC...
JavaScript
define([ "dojo/_base/array", // array.forEach array.map "dojo/_base/sniff", // has("ie") "dojo/_base/unload", // unload.addOnWindowUnload "dojo/_base/window", // win.body "." // dijit._scopeName ], function(array, has, unload, win, dijit){ // module: // dijit/registry // summary: // Registry of existing wid...
JavaScript
define([ "dojo/_base/array", // array.forEach array.map "dojo/_base/declare", // declare "dojo/_base/window", // win.global "./registry" // to add functions to dijit.registry ], function(array, declare, win, registry){ // module: // dijit/WidgetSet // summary: // Legacy registry code. New modules should ju...
JavaScript
dojo.provide("apt.DataRow"); dojo.require("apt.Event"); dojo.require("dijit._WidgetBase"); dojo.require("dijit._TemplatedMixin"); dojo.declare("apt.DataRow", [dijit._WidgetBase, dijit._TemplatedMixin], { templateString: dojo.cache('apt.templates', 'DataRow.html'), widgetsInTemplate: true, resourceName: '', par...
JavaScript
dojo.provide("apt.FilterPopover"); dojo.require("apt.Popover"); dojo.declare("apt.FilterPopover", [apt.Popover], { templateString: dojo.cache('apt.templates', 'FilterPopover.html'), start: '', end: '', license: '', contact: '', parent: '', constructor: function(data){ this.inherite...
JavaScript
dojo.provide("apt.CalendarDay"); dojo.require("apt.DataRow"); dojo.require("dijit._WidgetBase"); dojo.require("dijit._TemplatedMixin"); dojo.require("dijit.WidgetSet"); dojo.declare("apt.CalendarDay", [dijit._WidgetBase, dijit._TemplatedMixin], { templateString: dojo.cache('apt.templates', 'CalendarDay.html'), wid...
JavaScript
dojo.provide("apt.EventPopover"); dojo.require("apt.Popover"); dojo.declare("apt.EventPopover", [apt.Popover], { templateString: dojo.cache('apt.templates', 'EventPopover.html'), start: '', end: '', license: '', contact: '', reservationNumber: '', constructor: function(){ this.in...
JavaScript
// dojo.provide("apt.PlanningToolBootstrap"); dojo.provide("apt.PlanningTool"); dojo.require("apt.ResourceList"); dojo.require("apt.CalendarComponent"); dojo.require("apt.FilterPopover"); dojo.require("dojo.store.Memory"); dojo.require("dojo.store.JsonRest"); dojo.require("dijit._WidgetBase"); dojo.require("dijit._Temp...
JavaScript
dojo.provide("apt.Event"); dojo.require("apt.EventPopover"); dojo.require("dijit._WidgetBase"); dojo.require("dijit._TemplatedMixin"); dojo.declare("apt.Event", [dijit._WidgetBase, dijit._TemplatedMixin], { templateString: "<div class=\"event\" style=\"overflow: hidden\"><span class=\"info\">${info}</span></div>", ...
JavaScript
dojo.provide("apt.CalendarComponent"); dojo.require("apt.CalendarDay"); dojo.require("dijit._WidgetBase"); dojo.require("dijit.WidgetSet"); dojo.require("dijit._TemplatedMixin"); dojo.declare("apt.CalendarComponent", [dijit._WidgetBase, dijit._TemplatedMixin], { templateString: dojo.cache('apt.templates', 'CalendarC...
JavaScript
// dojo.provide("apt.ResourceListBootstrap"); dojo.provide("apt.ResourceList"); dojo.require("dijit._WidgetBase"); dojo.require("dijit._TemplatedMixin"); dojo.declare("apt.ResourceList", [dijit._WidgetBase, dijit._TemplatedMixin], { templateString: dojo.cache('apt.templates', 'ResourceList.html'), widgetsInTemplat...
JavaScript
dojo.provide("apt.Popover"); dojo.require("dijit._WidgetBase"); dojo.require("dijit._TemplatedMixin"); dojo.declare("apt.Popover", [dijit._WidgetBase, dijit._TemplatedMixin], { templateString: dojo.cache('apt.templates', 'Popover.html'), widgetsInTemplate: true, title: '', content: '', construct...
JavaScript
// 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 pat...
JavaScript
/// XXX: make it cross browser /** * make the code below compatible with browsers without * an installed firebug like debugger */ if (!window.console || !console.firebug) { var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trac...
JavaScript
/** * helper function to return a node containing the * search summary for a given text. keywords is a list * of stemmed words, hlwords is the list of normal, unstemmed * words. the first one is used to find the occurance, the * latter for highlighting it. */ jQuery.makeSearchSummary = function(text, keywords, h...
JavaScript
/*! * Author: Abdullah A Almsaeed * Date: 4 Jan 2014 * Description: * This file should be included in all pages !**/ /* * Global variables. If you change any of these vars, don't forget * to change the values in the less files! */ var left_side_width = 220; //Sidebar width in pixels $(funct...
JavaScript
function basename(path) { return path.replace(/\\/g,'/').replace( /.*\//, '' ); } function dirname(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');; } $(document).ready(function() { var max_fields = 5; //maximum input boxes allowed var wr...
JavaScript
/** * jQuery Plugin Autosave * * @author Raymond Julin (raymond[dot]julin[at]gmail[dot]com) * @author Mads Erik Forberg (mads[at]hardware[dot]no) * @author Simen Graaten (simen[at]hardware[dot]no) * amended to cope with jQuery 1.6 or later by Simon Battersby (see http://www.simonbattersby.com/blog/using-the-jquer...
JavaScript
/** * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ /** * This file was added automatically by CKEditor builder. * You may re-use it at any time to build CKEditor again. * * If you would like to bu...
JavaScript
/** * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. // For complete reference see: // http://docs.ckeditor.com/#!/...
JavaScript
/* Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */
JavaScript
/** * Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ // This file contains style definitions that can be used by CKEditor plugins. // // The most common use for it is the "stylescombo" plugin, which shows a combo ...
JavaScript
/** * Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.dialog.add( 'myDialog', function() { return { title: 'My Dialog', minWidth: 400, minHeight: 200, contents: [ { id: 'tab1', la...
JavaScript
/** * Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ // Tool scripts for the sample pages. // This file can be ignored and is not required to make use of CKEditor. ( function() { CKEDITOR.on( 'instanceReady', ...
JavaScript
/*! * Cropper v0.7.8 * https://github.com/fengyuanchen/cropper * * Copyright 2014-2015 Fengyuan Chen * Released under the MIT license */ (function (factory) { if (typeof define === "function" && define.amd) { // AMD. Register as anonymous module. define(["jquery"], factory); } else if (typeof exports...
JavaScript
/* * Lazy Load - jQuery plugin for lazy loading images * * Copyright (c) 2007-2013 Mika Tuupola * * Licensed under the MIT license: * http://www.opensource.org/licenses/mit-license.php * * Project home: * http://www.appelsiini.net/projects/lazyload * * Version: 1.9.3 * */ (function($, window, documen...
JavaScript
//------------------------------------------------------------------------------ /* Chatroom font formatter plugin */ FreiChat.util = { storage: { get: function (index) { if (typeof Storage !== "undefined") { localStorage.getItem(index); } else { Get...
JavaScript
function Get_Cookie(b) { if ("undefined" !== typeof Storage) return localStorage.getItem(b); for (var c = document.cookie.split(";"), a = "", d = "", f = "", e = 0; e < c.length; e++) if (a = c[e].split("="), d = a[0].replace(/^\s+|\s+$/g, ""), d == b) return 1 < a.length && (f = une...
JavaScript
FreiChat.open_voicechat = function(user, id) { FreiChat.toid = id; FreiChat.touser = user; var left = (screen.width - 450) / 2; var top = (screen.height - 250) / 2; FreiChat.is_chatroom = (FreiChat.in_room === id); window.open(freidefines.GEN.url + "client/plugins/voicechat/voicechat.php", '...
JavaScript
$jn=jQuery.noConflict(freidefines.jsconflicts); $jn(document).ready(function(){ var main_str = "<div id='freichat_mobile_chat'>"+freidefines.TRANS.mobile_chat+"<span class='freichat_mobile_new_messages' id='freichat_mobile_new_messages'>0</span></div>"; var id = '<?php echo $cvs->session_id; ?>'; var xhash = '<...
JavaScript
(function() { var iOSCheckbox; var __slice = Array.prototype.slice; iOSCheckbox = (function() { function iOSCheckbox(elem, options) { var key, opts, value; this.elem = $(elem); opts = $.extend({}, iOSCheckbox.defaults, options); for (key in opts) { value = opts[key]; th...
JavaScript
(function($) { /** * Auto-growing textareas; technique ripped from Facebook * * http://github.com/jaz303/jquery-grab-bag/tree/master/javascripts/jquery.autogrow-textarea.js */ $.fn.autogrow = function(options) { return this.filter('textarea').each(function() { ...
JavaScript
// Copyright 2006 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in wr...
JavaScript
/* Flot plugin for stacking data sets, i.e. putting them on top of each other, for accumulative graphs. The plugin assumes the data is sorted on x (or y if stacking horizontally). For line charts, it is assumed that if a line has an undefined gap (from a null point), then the line above it should have the same gap - i...
JavaScript
/*! * jQuery Cookie Plugin * https://github.com/carhartl/jquery-cookie * * Copyright 2011, Klaus Hartl * Dual licensed under the MIT or GPL Version 2 licenses. * http://www.opensource.org/licenses/mit-license.php * http://www.opensource.org/licenses/GPL-2.0 */ (function($) { $.cookie = function(key, value, ...
JavaScript
/** * noty - jQuery Notification Plugin v1.2.1 * Contributors: https://github.com/needim/noty/graphs/contributors * * Examples and Documentation - http://needim.github.com/noty/ * * Licensed under the MIT licenses: * http://www.opensource.org/licenses/mit-license.php * **/ (function($) { $.noty = function(options, cus...
JavaScript
$(document).ready(function(){ //themes, change CSS with JS //default theme(CSS) is cerulean, change it if needed var current_theme = $.cookie('current_theme')==null ? 'classic' :$.cookie('current_theme'); switch_theme(current_theme); $('#themes a[data-value="'+current_theme+'"]').find('i').addClass('icon-ok'); ...
JavaScript
/* * ================= * Rule of the thumb * ================= * * * If any css property in the css object is an array * then that property holds multiple values and hence should be looped * * * * for eg. * * CSS Object { * * #freichat: * { * //now here background is an array hence it...
JavaScript
var freidefines = { GEN: { url: '<?php echo $thm->url; ?>', curr_theme: '<?php echo $_SESSION[$thm->uid."curr_theme"]; ?>', RDIR: '<?php echo RDIR; ?>' }, file_exts: '<?php echo $thm->valid_exts; ?>', freichatheadimg: '<?php echo $freichatheadimg; ?>', rtlimg_enabled: '<?php ...
JavaScript
/*! * jQuery TextChange Plugin * http://www.zurb.com/playground/jquery-text-change-custom-event * * Copyright 2010, ZURB * Released under the MIT License */ (function ($) { $.event.special.textchange = { setup: function (data, namespaces) { $(this).data('lastValue', this.contentEditable ==...
JavaScript
$('.navbar').hide(); $('.main-menu-span').hide(); $('document').ready(function() { $('#hr_footer_frei').hide(); $('#theme_footer').hide(); /*Hide all other elements*/ /* $('.navbar').hide(); $('.main-menu-span').hide(); $('#hr_footer_frei').hide(); $('#theme_footer').hide(); ...
JavaScript
// Spectrum Colorpicker v1.1.0 // https://github.com/bgrins/spectrum // Author: Brian Grinstead // License: MIT (function (window, $, undefined) { var defaultOpts = { // Callbacks beforeShow: noop, move: noop, change: noop, show: noop, hide: noop, ...
JavaScript
/* * Jeditable - jQuery in place edit plugin * * Copyright (c) 2006-2009 Mika Tuupola, Dylan Verheul * * Licensed under the MIT license: * http://www.opensource.org/licenses/mit-license.php * * Project home: * http://www.appelsiini.net/projects/jeditable * * Based on editable by Dylan Verheul <dylan_at_d...
JavaScript
function utf8_encode (argString) { // http://kevin.vanzonneveld.net // + original by: Webtoolkit.info (http://www.webtoolkit.info/) // + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // + improved by: sowberry // + tweaked by: Jack // + bugfixed by: Onno Marsman // + improv...
JavaScript
(function ($) { 'use strict'; var _inlineComplete = { /** * Check browser support for HTML5 <datalist> * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist * * @var bool */ dataListSupport: !!(document.createElement('datalist') && win...
JavaScript
; /* * * SAMPLE USAGE DETAILS : * * sliders structure : * * [ * { * color: "COLOR", * position: "POSITION" //0 to 100 without % symbol * }, * { * .... * .... * }, * .... * ] * */ 'use strict'; //make me jquery UI independent if (typeof jQuery.fn.draggable === "undefined") { ...
JavaScript
/** * Creates a new Floor. * @constructor * @param {google.maps.Map=} opt_map */ function Floor(opt_map) { /** * @type Array.<google.maps.MVCObject> */ this.overlays_ = []; /** * @type boolean */ this.shown_ = true; if (opt_map) { this.setMap(opt_map); } } /** * @param {google.maps.M...
JavaScript
/** * Creates a new level control. * @constructor * @param {IoMap} iomap the IO map controller. * @param {Array.<string>} levels the levels to create switchers for. */ function LevelControl(iomap, levels) { var that = this; this.iomap_ = iomap; this.el_ = this.initDom_(levels); google.maps.event.addList...
JavaScript
/** * @license * * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable l...
JavaScript
// Copyright 2011 Google /** * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in wri...
JavaScript
var AFTERIMAGE_COUNT = 3; var curSlide; var animateStep; var iconEl; var presentationEl; var slideEls; var iconAnimateStep; function advanceIcon() { iconEl.classList.add('animate'); iconEl.classList.remove('animate-1'); iconEl.classList.remove('animate-2'); iconEl.classList.remove('animate-3'); iconEl.class...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2012 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2012 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2012 Google Inc. // // Licensed under the Apache License, Version 2.0 (the 'License'); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2012 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the 'License'); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2012 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the 'License'); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2012 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the 'License'); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the 'License'); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the 'License'); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2012 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2012 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript
// Copyright 2011 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in...
JavaScript