code stringlengths 2 1.05M |
|---|
/*
* grunt-sass-compile-imports
* https://github.com/bmds/grunt-sass-compile-imports
*
* Copyright (c) 2014 Barney Scott
* Licensed under the MIT license.
*/
'use strict';
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js',
'tasks/*.js',
'<%= nodeunit.tests %>',
],
options: {
jshintrc: '.jshintrc',
},
},
// Before generating any new files, remove any previously-created files.
clean: {
tests: ['tmp'],
},
// Configuration to be run (and then tested).
sass_injection: {
default_options: {
target: 'test/_partials.scss',
src: ['test/fixtures/testing', 'test/fixtures/123']
},
custom_options: {
options: {
removeExtension: false
},
target: 'test/_partials.scss',
files: [{
expand: true,
cwd : 'test/fixtures/',
src : ['**/*.scss']
}]
},
replace_path: {
options: {
replacePath: {
pattern: 'test/fixtures',
replace: '../_styles'
}
},
target: 'test/_partials.scss',
files: [{
expand: true,
cwd : 'test/fixtures/',
src : ['**/*.scss']
}]
}
},
// Unit tests.
nodeunit: {
tests: ['test/*_test.js'],
},
});
// Actually load this plugin's task(s).
grunt.loadTasks('tasks');
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-debug-task');
// Whenever the "test" task is run, first clean the "tmp" dir, then run this
// plugin's task(s), then test the result.
grunt.registerTask('test', ['clean', 'sass_injection', 'nodeunit']);
// By default, lint and run all tests.
grunt.registerTask('default', ['jshint']);
};
|
/*! @license Firebase v4.5.0
Build: rev-f49c8b5
Terms: https://firebase.google.com/terms/ */
/**
* Copyright 2017 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 writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _dbInterface = require('./db-interface');
var _dbInterface2 = _interopRequireDefault(_dbInterface);
var _errors = require('./errors');
var _errors2 = _interopRequireDefault(_errors);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var __extends = undefined && undefined.__extends || function () {
var extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (d, b) {
d.__proto__ = b;
} || function (d, b) {
for (var p in b) {
if (b.hasOwnProperty(p)) d[p] = b[p];
}
};
return function (d, b) {
extendStatics(d, b);
function __() {
this.constructor = d;
}
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
}();
var FCM_VAPID_OBJ_STORE = 'fcm_vapid_object_Store';
var DB_VERSION = 1;
var VapidDetailsModel = /** @class */function (_super) {
__extends(VapidDetailsModel, _super);
function VapidDetailsModel() {
return _super.call(this, VapidDetailsModel.dbName, DB_VERSION) || this;
}
Object.defineProperty(VapidDetailsModel, "dbName", {
get: function get() {
return 'fcm_vapid_details_db';
},
enumerable: true,
configurable: true
});
/**
* @override
* @param {IDBDatabase} db
*/
VapidDetailsModel.prototype.onDBUpgrade = function (db) {
db.createObjectStore(FCM_VAPID_OBJ_STORE, {
keyPath: 'swScope'
});
};
/**
* Given a service worker scope, this method will look up the vapid key
* in indexedDB.
* @param {string} swScope
* @return {Promise<string>} The vapid key associated with that scope.
*/
VapidDetailsModel.prototype.getVapidFromSWScope = function (swScope) {
if (typeof swScope !== 'string' || swScope.length === 0) {
return Promise.reject(this.errorFactory_.create(_errors2.default.codes.BAD_SCOPE));
}
return this.openDatabase().then(function (db) {
return new Promise(function (resolve, reject) {
var transaction = db.transaction([FCM_VAPID_OBJ_STORE]);
var objectStore = transaction.objectStore(FCM_VAPID_OBJ_STORE);
var scopeRequest = objectStore.get(swScope);
scopeRequest.onerror = function (event) {
reject(event.target.error);
};
scopeRequest.onsuccess = function (event) {
var result = event.target.result;
var vapidKey = null;
if (result) {
vapidKey = result.vapidKey;
}
resolve(vapidKey);
};
});
});
};
/**
* Save a vapid key against a swScope for later date.
* @param {string} swScope The service worker scope to be associated with
* this push subscription.
* @param {string} vapidKey The public vapid key to be associated with
* the swScope.
* @return {Promise<void>}
*/
VapidDetailsModel.prototype.saveVapidDetails = function (swScope, vapidKey) {
var _this = this;
if (typeof swScope !== 'string' || swScope.length === 0) {
return Promise.reject(this.errorFactory_.create(_errors2.default.codes.BAD_SCOPE));
}
if (typeof vapidKey !== 'string' || vapidKey.length === 0) {
return Promise.reject(this.errorFactory_.create(_errors2.default.codes.BAD_VAPID_KEY));
}
var details = {
swScope: swScope,
vapidKey: vapidKey
};
return this.openDatabase().then(function (db) {
return new Promise(function (resolve, reject) {
var transaction = db.transaction([FCM_VAPID_OBJ_STORE], _this.TRANSACTION_READ_WRITE);
var objectStore = transaction.objectStore(FCM_VAPID_OBJ_STORE);
var request = objectStore.put(details);
request.onerror = function (event) {
reject(event.target.error);
};
request.onsuccess = function (event) {
resolve();
};
});
});
};
/**
* This method deletes details of the current FCM VAPID key for a SW scope.
* @param {string} swScope Scope to be deleted
* @return {Promise<string>} Resolves once the scope / vapid details have been
* deleted and returns the deleted vapid key.
*/
VapidDetailsModel.prototype.deleteVapidDetails = function (swScope) {
var _this = this;
return this.getVapidFromSWScope(swScope).then(function (vapidKey) {
if (!vapidKey) {
throw _this.errorFactory_.create(_errors2.default.codes.DELETE_SCOPE_NOT_FOUND);
}
return _this.openDatabase().then(function (db) {
return new Promise(function (resolve, reject) {
var transaction = db.transaction([FCM_VAPID_OBJ_STORE], _this.TRANSACTION_READ_WRITE);
var objectStore = transaction.objectStore(FCM_VAPID_OBJ_STORE);
var request = objectStore.delete(swScope);
request.onerror = function (event) {
reject(event.target.error);
};
request.onsuccess = function (event) {
if (event.target.result === 0) {
reject(_this.errorFactory_.create(_errors2.default.codes.FAILED_DELETE_VAPID_KEY));
return;
}
resolve(vapidKey);
};
});
});
});
};
return VapidDetailsModel;
}(_dbInterface2.default);
exports.default = VapidDetailsModel;
module.exports = exports['default'];
//# sourceMappingURL=vapid-details-model.js.map
|
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
module('Unit | Controller | weeklyevents', function (hooks) {
setupTest(hooks);
// Replace this with your real tests.
test('it exists', function (assert) {
const controller = this.owner.lookup('controller:weeklyevents');
assert.ok(controller);
});
});
|
var oexi18n = {
"Click, then press Ctrl+S to save.":"Cliquez, puis appuyez sur Ctrl+S pour enregistrer.",
"Download Video":"Télécharger la vidéo"
}
|
'use strict';
var isA = require("Espresso/oop").isA;
var oop = require("Espresso/oop").oop;
var init = require("Espresso/oop").init;
var trim = require("Espresso/trim").trim;
var isA = require("Espresso/oop").isA;
var oop = require("Espresso/oop").oop;
var AsyncEvent = require("Espresso/Event/AsyncEvent");
var KernelInterface = require("Espresso/Http/KernelInterface");
var TypeException = require("Espresso/TypeException");
function KernelEvent( kernel, request, type ){
// type safety
if(!isA(kernel,"Espresso/Http/KernelInterface"))
throw new TypeException('kernel',"Espresso/Http/KernelInterface");
if(!isA(request,"Espresso/Http/RequestInterface"))
throw new TypeException('request',"Espresso/Http/RequestInterface");
if(!isA(this,"Espresso/Event/AsyncEvent"))
init(this, AsyncEvent);
oop(this,"Espresso/Http/Event/KernelEvent");
this.__.kernel = kernel;
this.__.request = request;
this.__.requestType = type;
}
function getKernel(){
return this.__.kernel;
}
function getRequest(){
return this.__.request;
}
function getRequestType(){
return this.__.requestType;
}
function isMasterRequest(){
return this.__.requestType === KernelInterface.MASTER_REQUEST;
}
KernelEvent.prototype = Object.create( AsyncEvent.prototype );
KernelEvent.prototype.getKernel = getKernel;
KernelEvent.prototype.getRequest = getRequest;
KernelEvent.prototype.getRequestType = getRequestType;
KernelEvent.prototype.isMasterRequest = isMasterRequest;
module.exports = KernelEvent;
|
/*!
* Angular Material Design
* https://github.com/angular/material
* @license MIT
* v0.6.1-master-d192083
*/
!function(){"use strict";function i(){}function e(e){return{restrict:"E",link:e,controller:[i]}}angular.module("material.components.divider",["material.core"]).directive("mdDivider",e),e.$inject=["$mdTheming"]}(); |
var contwidgetorUi = require('contwidgetor-ui');
var ReactDOM = require('react-dom');
var React = require('react');
var ContributionsGrid = contwidgetorUi.ContributionsGrid;
var NoContributionsGrid = contwidgetorUi.NoContributionsGrid;
$(document).ready(function() {
var _contributions = {"2011-10-06":3,"2011-10-23":1,"2011-11-01":3,"2011-12-08":1,"2011-12-21":3,"2012-06-01":5,"2012-07-22":4,"2012-07-23":4,"2012-07-25":1,"2013-01-03":2,"2013-03-18":3,"2013-03-21":8,"2013-03-22":2,"2013-04-28":1,"2013-04-29":12,"2013-05-01":5,
"2013-06-17":4,"2013-06-18":8,"2013-06-22":3,"2013-06-23":3,"2013-06-24":1,"2013-06-26":1,"2013-06-28":1,"2013-06-30":3,"2013-07-01":1,"2013-07-03":3,"2013-07-04":3,"2013-07-07":3,"2013-07-08":2,"2013-07-10":3,"2013-07-11":5,"2013-07-12":1,"2013-07-13":1,
"2013-07-14":1,"2013-08-08":1,"2013-08-09":1,"2013-08-15":3,"2013-08-16":5,"2013-08-18":1,"2013-08-20":5,"2013-08-21":2,"2013-08-24":1,"2013-08-25":6,"2013-08-26":3,"2013-08-31":5,"2013-09-03":4,"2013-09-04":6,"2013-09-07":2,"2013-09-10":3,"2013-09-11":4,
"2013-09-12":3,"2013-09-16":5,"2013-09-18":3,"2013-09-21":3,"2013-09-24":3,"2013-09-28":5,"2013-09-29":3,"2013-10-02":1,"2013-10-03":2,"2013-10-06":1,"2013-10-07":3,"2013-10-15":1,"2013-10-17":6,"2013-10-19":4,"2013-10-20":5,"2013-10-23":10,"2013-10-30":1,
"2013-11-03":1,"2013-11-05":1,"2013-11-10":1,"2014-01-10":5,"2014-01-17":17,"2014-01-22":2,"2014-01-23":13,"2014-01-24":7,"2014-01-25":7,"2014-01-28":9,"2014-01-29":1,"2014-01-30":5,"2014-01-31":19,"2014-02-01":6,"2014-02-06":6,"2014-02-07":8,"2014-02-08":10,
"2014-02-09":3,"2014-02-10":12,"2014-02-11":9,"2014-02-12":1,"2014-02-13":9,"2014-02-14":3,"2014-02-25":7,"2014-03-04":2,"2014-03-07":2,"2014-03-14":1,"2014-03-19":1,"2014-03-23":1,"2014-03-26":1,"2014-03-29":4,"2014-04-04":5,"2014-05-06":6,"2014-05-08":1,
"2014-05-09":1,"2014-05-10":3,"2014-05-11":1,"2014-05-13":6,"2014-05-17":3,"2014-05-18":1,"2014-05-24":9,"2014-05-25":1,"2014-06-01":1,"2014-06-08":3,"2014-06-09":10,"2014-06-10":5,"2014-06-11":5,"2014-06-14":7,"2014-06-15":2,"2014-06-17":2,"2014-06-20":1,
"2014-07-06":4,"2014-07-15":1,"2014-07-30":1,"2014-08-02":13,"2014-08-03":2,"2014-08-13":8,"2014-08-16":6,"2014-08-17":1,"2014-08-20":11,"2014-08-21":1,"2014-08-23":1,"2014-09-06":7,"2014-09-07":2,"2014-09-30":1,"2014-10-02":3,"2014-10-03":1,"2014-10-04":1,
"2014-10-07":4,"2014-10-08":6,"2014-10-09":1,"2014-10-13":3,"2014-10-20":2,"2014-10-21":1,"2014-10-27":1,"2014-10-31":5,"2014-11-02":2,"2014-11-03":2,"2014-11-12":2,"2014-11-13":2,"2014-11-15":1,"2014-11-16":1,"2014-11-18":1,"2014-11-25":2,"2014-11-27":1,
"2014-11-30":4,"2014-12-02":5,"2014-12-03":2,"2014-12-04":7,"2014-12-05":3,"2014-12-08":1,"2014-12-09":2,"2014-12-15":12,"2014-12-16":16,"2014-12-17":15,"2014-12-18":4,"2014-12-19":3,"2014-12-21":1,"2014-12-26":4,"2014-12-27":6,"2014-12-29":1,"2014-12-30":1,
"2014-12-31":3,"2015-01-03":1,"2015-01-05":3,"2015-01-07":1,"2015-01-13":1,"2015-01-15":6,"2015-01-19":1,"2015-01-23":3,"2015-01-25":6,"2015-01-26":5,"2015-01-27":1,"2015-02-06":8,"2015-02-09":4,"2015-02-17":1,"2015-03-05":6,"2015-03-30":2,"2015-03-31":10,
"2015-04-06":15,"2015-04-08":2,"2015-04-13":5,"2015-04-14":1,"2015-04-18":1,"2015-04-19":3,"2015-04-20":1,"2015-04-23":13,"2015-04-24":3,"2015-04-25":5,"2015-04-26":2,"2015-04-27":3,"2015-04-28":4,"2015-04-29":1,"2015-05-01":1,"2015-05-02":3,"2015-05-03":3,
"2015-05-07":6,"2015-05-12":7,"2015-05-14":4,"2015-05-17":5,"2015-05-18":3,"2015-05-19":3,"2015-05-23":3,"2015-05-25":1,"2015-05-29":3,"2015-05-30":1,"2015-05-31":11,"2015-06-01":3,"2015-06-09":2,"2015-06-11":8,"2015-06-15":2,"2015-06-23":2,"2015-08-05":1,
"2015-08-23":2,"2015-08-25":1,"2015-08-26":2,"2015-08-27":1,"2015-08-28":2,"2015-08-31":1,"2015-09-01":5,"2015-09-04":2,"2015-09-06":9,"2015-09-07":1,"2015-09-08":2,"2015-09-09":5,"2015-09-10":6,"2015-09-11":3,"2015-09-14":1,"2015-09-16":3,"2015-09-17":1,
"2015-09-19":1,"2015-09-21":4,"2015-09-22":1,"2015-10-12":2,"2015-10-14":2,"2015-10-18":6,"2015-10-19":4,"2015-10-21":2,"2015-10-22":2,"2015-10-23":2,"2015-10-25":2,"2015-10-26":2,"2015-10-28":3,"2015-10-29":2,"2015-10-30":2,"2015-11-01":1,"2015-11-02":6,
"2015-11-04":7,"2015-11-05":5,"2015-11-07":1,"2015-11-09":7,"2015-11-10":1,"2015-11-12":3,"2015-11-14":1,"2015-11-15":1,"2015-11-16":3,"2015-11-17":9,"2015-11-19":13,"2015-11-20":3,"2015-11-21":5,"2015-11-22":8,"2015-11-23":1,"2015-11-24":3,"2015-11-25":12,
"2015-11-26":9,"2015-11-27":3,"2015-11-28":1}
ReactDOM.render(React.createElement(ContributionsGrid, {contributions: _contributions}),
document.getElementById('react-content-grid'));
ReactDOM.render(React.createElement(NoContributionsGrid),
document.getElementById('react-content-no-grid'));
});
|
'use strict'
const KadDht = require('libp2p-kad-dht')
const Crypto = require('../../../src/insecure/plaintext')
const Muxer = require('libp2p-mplex')
const Transport = require('libp2p-tcp')
const mergeOptions = require('merge-options')
const baseOptions = {
modules: {
transport: [Transport],
streamMuxer: [Muxer],
connEncryption: [Crypto]
}
}
module.exports.baseOptions = baseOptions
const subsystemOptions = mergeOptions(baseOptions, {
modules: {
dht: KadDht
},
config: {
dht: {
kBucketSize: 20,
enabled: true
}
}
})
module.exports.subsystemOptions = subsystemOptions
module.exports.subsystemMulticodecs = [
'/ipfs/lan/kad/1.0.0'
]
|
(function() {
'use strict';
angular
.module('app.promise')
.factory('DeleteDataParams', DeleteDataParams);
DeleteDataParams.$inject = ['$q', '$timeout', 'withParams'];
/*@ngInject*/
function DeleteDataParams($q, $timeout, withParams) {
return function(api, restApi, params, queryParams) {
return $q(function(resolve, reject) {
$timeout(function() {
withParams
.HTTPDELETE(api, restApi, params, queryParams)
.then(function(response) {
resolve(response);
});
}, 0);
});
};
}
}());
|
'use strict';
app.controller('registerCtrl', function ($scope) {
var REs = {
username: /^\w+$/,
email: /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
};
$.each(REs, function (key) {
$scope[$.camelCase('validate-' + key)] = this.test.bind(this);
});
var repeat = $('#repeatPassword');
var trigger = repeat.trigger.bind(repeat, 'input');
$('#password').on('input', setTimeout.bind(null, trigger, 0));
$scope.validatePassword = function (val) {
return val.length > 5 && val == $scope.password;
};
});
|
const turf = {
along: require('@turf/along').default,
length: require('@turf/length').default,
pointOnFeature: require('@turf/point-on-feature').default
}
module.exports = function pointOnFeature (ob, leafletFeatureOptions) {
const geojson = ob.GeoJSON()
let poi
if (geojson.geometry.type === 'LineString') {
poi = turf.along(geojson, turf.length(geojson) / 2)
} else if (geojson.geometry.type === 'GeometryCollection' && geojson.geometry.geometries.length === 0) {
return null
} else {
poi = turf.pointOnFeature(geojson)
}
return {
lat: poi.geometry.coordinates[1],
lon: poi.geometry.coordinates[0] + leafletFeatureOptions.shiftWorld[poi.geometry.coordinates[0] < 0 ? 0 : 1]
}
}
|
var base = require('./karma.base.config.js')
module.exports = function (config) {
var cfg = {
browsers: ['Chrome'/*, 'Firefox', 'Safari'*/],
reporters: ['progress'],
singleRun: true
}
console.log(process.env.NODE_ENV)
if (process.env.NODE_ENV === 'travis') {
cfg.browsers = ['PhantomJS']
}
config.set(Object.assign(base, cfg))
}
|
// Copyright (c) 2012 Ecma International. All rights reserved.
// Ecma International makes this code available under the terms and conditions set
// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the
// "Use Terms"). Any redistribution of this code must retain the above
// copyright and this notice and otherwise comply with the Use Terms.
/*---
es5id: 15.5.4.20-4-10
description: >
String.prototype.trim handles whitepace and lineterminators
(\uFEFFabc)
includes: [runTestCase.js]
---*/
function testcase() {
return "\uFEFFabc".trim() === "abc";
}
runTestCase(testcase);
|
jQuery(document).ready(function($) {
/*======= Skillset *=======*/
$('.level-bar-inner').css('width', '0');
$(window).on('load', function() {
$('.level-bar-inner').each(function() {
var itemWidth = $(this).data('level');
$(this).animate({
width: itemWidth
}, 800);
});
});
/* Bootstrap Tooltip for Skillset */
$('.level-label').tooltip();
/* jQuery RSS - https://github.com/sdepold/jquery-rss */
$("#rss-feeds").rss(
//Change this to your own rss feeds
"http://feeds.feedburner.com/TechCrunch/startups",
{
// how many entries do you want?
// default: 4
// valid values: any integer
limit: 3,
// the effect, which is used to let the entries appear
// default: 'show'
// valid values: 'show', 'slide', 'slideFast', 'slideSynced', 'slideFastSynced'
effect: 'slideFastSynced',
// outer template for the html transformation
// default: "<ul>{entries}</ul>"
// valid values: any string
layoutTemplate: "<div class='item'>{entries}</div>",
// inner template for each entry
// default: '<li><a href="{url}">[{author}@{date}] {title}</a><br/>{shortBodyPlain}</li>'
// valid values: any string
entryTemplate: '<h3 class="title"><a href="{url}" target="_blank">{title}</a></h3><div><p>{shortBodyPlain}</p><a class="more-link" href="{url}" target="_blank"><i class="fa fa-external-link"></i>Read more</a></div>'
}
);
/* Github Activity Feed - https://github.com/caseyscarborough/github-activity */
//GitHubActivity.feed({ username: "caseyscarborough", selector: "#ghfeed" });
}); |
'use strict';
var app= angular.module('core').controller('HomeController', ['$scope', 'Authentication', 'ProductosPaginate','Categorias',
function($scope, Authentication, ProductosPaginate, Categorias) {
//Hacemos una query para listar Productos
ProductosPaginate.query({'page':1,'total':4},function(p) {
$scope.productos = p;
});
//Hacemos una query para listar Productos
Categorias.query(function(c) {
$scope.categorias = c;
});
// This provides Authentication context.
$scope.authentication = Authentication;
//slider de la pagina
var baseURL='http://lorempixel.com/1200/460/';
$scope.setInterval=5000;
$scope.slides=[
{
title:'La Tegnologia al alcanse de tus manos',
image:baseURL+'technics/1',
text:'aqui tenemos los ultimos productos del mercado al alcance de tu mano'
},
{
title:'Lo mas sencillo posible',
image:baseURL+'technics/5',
text:''
},
{
title:'Prueva slider 3',
image:baseURL+'technics/7',
text:'provando que el slider vaya bien tercera pagina'
}
];
// paginacion
/*$scope.totalItems = 64;
$scope.currentPage = 1;
$scope.maxSize = 4;
$scope.bigTotalItems = 64;
$scope.setPage = function (pageNo) {
$scope.currentPage = pageNo;
console.log($scope.currentPage);
ProductosPaginate.query({'page':pageNo,'total':4},function(p) {
$scope.productos = p;
});
};
$scope.pageNo;
$scope.pageChanged = function() {
console.log('Page changed to: ' + $scope.bigCurrentPage);
ProductosPaginate.query({'page':pageNo,'total':4},function(p) {
$scope.productos = p;
});
};
//$scope.maxSize = 5;
app.run(function(paginationConfig){
paginationConfig.nextText='Siguiente';
paginationConfig.previousText='Anterior';
paginationConfig.lastText='Ultimo';
paginationConfig.firstText='Primero';
});*/
}
]);
|
var gulp = require('gulp');
// wee server for dev work, live reloads on changes
var connect = require('gulp-connect');
var connectReload = require('connect-livereload');
// helper library for copying bower dependencies
var mainBowerFiles = require('main-bower-files');
// copy bower dependencies to lib folder
gulp.task('bower', function () {
return gulp.src(mainBowerFiles())
.pipe(gulp.dest('dist/js/lib'))
});
gulp.task('build:js', function () {
return gulp.src('./src/js/**/*')
.pipe(gulp.dest('./dist/js'))
.pipe(connect.reload());
});
gulp.task('build', ['build:js']);
gulp.task('copy:css', function () {
return gulp.src('./src/css/**/*')
.pipe(gulp.dest('./dist/css'));
});
gulp.task('copy:assets', function () {
return gulp.src('./src/assets/**/*')
.pipe(gulp.dest('./dist/assets'));
});
gulp.task('copy:html', function () {
return gulp.src('./src/**/*.html')
.pipe(gulp.dest('./dist'))
.pipe(connect.reload());
});
gulp.task('copy', ['copy:assets', 'copy:html', 'copy:css', 'copy:assets']);
gulp.task('connect', function () {
return connect.server({
root: 'dist',
port: 5000,
livereload: true,
middleware: function () {
return [
connectReload()
];
}
});
});
gulp.task('watch', ['copy', 'build'], function () {
gulp.watch('./src/js/**/*.js', ['build:js']);
gulp.watch('./src/**/*.html', ['copy:html']);
gulp.watch('./src/**/*.css', ['copy:css']);
gulp.watch('./src/assets/**/*.*', ['copy:assets']);
//gulp.watch('./bower_components/**', ['bower']);
});
gulp.task('dev', ['connect', 'watch']);
gulp.task('default', ['build', 'copy']); |
/*! DataTables Bootstrap 3 integration
* ©2011-2015 SpryMedia Ltd - datatables.net/license
*/
/**
* DataTables integration for Bootstrap 3. This requires Bootstrap 3 and
* DataTables 1.10 or newer.
*
* This file sets the defaults and adds options to DataTables to style its
* controls using Bootstrap. See http://datatables.net/manual/styling/bootstrap
* for further information.
*/
(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD
define(['jquery', 'datatables.net'], function ($) {
return factory($, window, document);
});
} else if (typeof exports === 'object') {
// CommonJS
module.exports = function (root, $) {
if (!root) {
root = window;
}
if (!$ || !$.fn.dataTable) {
// Require DataTables, which attaches to jQuery, including
// jQuery if needed and have a $ property so we can access the
// jQuery object that is used
$ = require('datatables.net')(root, $).$;
}
return factory($, root, root.document);
};
} else {
// Browser
factory(jQuery, window, document);
}
}(function ($, window, document, undefined) {
'use strict';
var DataTable = $.fn.dataTable;
/* Set the defaults for DataTables initialisation */
$.extend(true, DataTable.defaults, {
dom:
"<'mdl-grid'" +
"<'mdl-cell mdl-cell--6-col'l>" +
"<'mdl-cell mdl-cell--6-col'f>" +
">" +
"<'mdl-grid dt-table'" +
"<'mdl-cell mdl-cell--12-col'tr>" +
">" +
"<'mdl-grid'" +
"<'mdl-cell mdl-cell--4-col'i>" +
"<'mdl-cell mdl-cell--8-col'p>" +
">",
renderer: 'material'
});
/* Default class modification */
$.extend(DataTable.ext.classes, {
sWrapper: "dataTables_wrapper form-inline dt-material",
sFilterInput: "form-control input-sm",
sLengthSelect: "form-control input-sm",
sProcessing: "dataTables_processing panel panel-default"
});
/* Bootstrap paging button renderer */
DataTable.ext.renderer.pageButton.material = function (settings, host, idx, buttons, page, pages) {
var api = new DataTable.Api(settings);
var classes = settings.oClasses;
var lang = settings.oLanguage.oPaginate;
var aria = settings.oLanguage.oAria.paginate || {};
var btnDisplay, btnClass, counter = 0;
var attach = function (container, buttons) {
var i, ien, node, button, disabled, active;
var clickHandler = function (e) {
e.preventDefault();
if (!$(e.currentTarget).hasClass('disabled') && api.page() != e.data.action) {
api.page(e.data.action).draw('page');
}
};
for (i = 0, ien = buttons.length; i < ien; i++) {
button = buttons[i];
if ($.isArray(button)) {
attach(container, button);
} else {
btnDisplay = '';
active = false;
switch (button) {
case 'ellipsis':
btnDisplay = '…';
btnClass = 'disabled';
break;
case 'first':
btnDisplay = lang.sFirst;
btnClass = button + (page > 0 ?
'' : ' disabled');
break;
case 'previous':
btnDisplay = lang.sPrevious;
btnClass = button + (page > 0 ?
'' : ' disabled');
break;
case 'next':
btnDisplay = lang.sNext;
btnClass = button + (page < pages - 1 ?
'' : ' disabled');
break;
case 'last':
btnDisplay = lang.sLast;
btnClass = button + (page < pages - 1 ?
'' : ' disabled');
break;
default:
btnDisplay = button + 1;
btnClass = '';
active = page === button;
break;
}
if (active) {
btnClass += ' mdl-button--raised mdl-button--colored';
}
if (btnDisplay) {
node = $('<button>', {
'class': 'mdl-button ' + btnClass,
'id': idx === 0 && typeof button === 'string' ?
settings.sTableId + '_' + button :
null,
'aria-controls': settings.sTableId,
'aria-label': aria[ button ],
'data-dt-idx': counter,
'tabindex': settings.iTabIndex,
'disabled': btnClass.indexOf('disabled') !== -1
})
.html(btnDisplay)
.appendTo(container);
settings.oApi._fnBindAction(
node, {action: button}, clickHandler
);
counter++;
}
}
}
};
// IE9 throws an 'unknown error' if document.activeElement is used
// inside an iframe or frame.
var activeEl;
try {
// Because this approach is destroying and recreating the paging
// elements, focus is lost on the select button which is bad for
// accessibility. So we want to restore focus once the draw has
// completed
activeEl = $(host).find(document.activeElement).data('dt-idx');
} catch (e) {
}
attach(
$(host).empty().html('<div class="pagination"/>').children(),
buttons
);
if (activeEl) {
$(host).find('[data-dt-idx=' + activeEl + ']').focus();
}
};
return DataTable;
})); |
var foo = (function (a) {
'use strict';
/* this is an intro */
// intro 1
// intro 2
// intro 3
// intro 4
var a__default = 'default' in a ? a['default'] : a;
console.log( a__default );
console.log( a.b );
var main = 42;
return main;
/* this is an outro */
// outro 1
// outro 2
// outro 3
// outro 4
}(a));
|
var timers = require('timers');
var spawn = require('cross-spawn');
var utils = require('../utils');
var childProcess = require('child_process');
var origFs = require('fs');
var base = __dirname + "/../..";
/**
* Restart server
*/
var restart = function () {
timers.setTimeout(function () {
try {
origFs.chmodSync(`${base}/bin/scullog`, '0777');
var child = spawn(`${base}/bin/scullog`, ['-s', 'restart'], { detached: true });
} catch (err) {
global.C.logger.info("Error, occured, while restarting service: ", err);
}
}, 1000);
}
var api = function (router, scullog) {
router.get('/updateFM', function* () {
global.C.logger.info("Updating server");
var remote = yield utils.read(scullog.getConfiguration().remoteJSON);
var local = yield utils.read(`${base}/package.json`);
var c = utils.versionCompare(remote['version'], local['version']);
if (c === false) {
this.status = 400;
this.body = "Invalid configuration for remote JSON path";
} else if (c < 1 && !this.request.query.forceUpgrade) {
this.body = c == 0 ? 'Already up to date' : `Lower version ${remote['version']} for remote`;
}
if (!!!this.body) {
try {
yield utils.extractRemoteZip(scullog.getConfiguration().remoteLocation, `${base}`);
} catch (err) {
C.logger.error(err.stack);
this.status = 400;
this.body = `Update Failed from ${local['version']} to ${remote['version']}`;
}
childProcess.execSync(`cd ${base} && npm install`);
restart();
this.body = `Update Successful from ${local['version']} to ${remote['version']}`;
}
});
router.get('/restartFM', function () {
global.C.logger.info("Restarting server");
restart();
this.body = "Restart Successful";
});
router.get('/version', function* () {
var local = yield utils.read(`${base}/package.json`);
this.body = local["version"];
});
}
module.exports = api; |
/* eslint-disable */
// Auto-generated by generate-enums script on Thu Feb 24 2022 03:38:38 GMT-0500 (Eastern Standard Time)
/**
* @enum
* @readonly
*/
const ELicenseType = {
"NoLicense": 0,
"SinglePurchase": 1,
"SinglePurchaseLimitedUse": 2,
"RecurringCharge": 3,
"RecurringChargeLimitedUse": 4,
"RecurringChargeLimitedUseWithOverages": 5,
"RecurringOption": 6,
"LimitedUseDelayedActivation": 7,
// Value-to-name mapping for convenience
"0": "NoLicense",
"1": "SinglePurchase",
"2": "SinglePurchaseLimitedUse",
"3": "RecurringCharge",
"4": "RecurringChargeLimitedUse",
"5": "RecurringChargeLimitedUseWithOverages",
"6": "RecurringOption",
"7": "LimitedUseDelayedActivation",
};
module.exports = ELicenseType;
|
import expect from 'expect';
import React from 'react';
import { mount } from 'enzyme';
import { Provider } from 'react-redux';
import configureStore from '../../../src/app/stores/windowStore';
import App from '../../../src/app/containers/App.js';
const store = configureStore(store);
const component = mount(<Provider store={store}><App position="devtools-left" /></Provider>);
describe('App container', () => {
it('should render inspector monitor\'s component', () => {
expect(component.find('DevtoolsInspector').html()).toExist();
});
it('should contain an empty action list', () => {
expect(
component.find('ActionList').html()
).toMatch(/<div class="actionListRows-[0-9]+"><\/div>/);
});
});
|
var AuthHttpResponseInterceptor = function($q, $location) {
return {
response: function (response) {
if (response.status === 401) {
console.log("Response 401");
}
return response || $q.when(response);
},
responseError: function (rejection) {
if (rejection.status === 401) {
console.log("Response Error 401", rejection);
$location.path('/login').search('returnUrl', $location.path());
}
return $q.reject(rejection);
}
}
}
AuthHttpResponseInterceptor.$inject = ['$q', '$location']; |
'use strict';
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('package.json'),
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */\n',
// Task configuration.
concat: {
options: {
banner: '<%= banner %>',
stripBanners: true
},
dist: {
src: ['lib/*.js'],
dest: 'build/<%= pkg.name %>.js'
},
},
uglify: {
options: {
banner: '<%= banner %>'
},
dist: {
src: '<%= concat.dist.dest %>',
dest: 'dist/<%= pkg.name %>.min.js'
},
},
nodeunit: {
files: ['test/**/*_test.js']
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
gruntfile: {
src: 'Gruntfile.js'
},
// lib: {
// options: {
// jshintrc: 'lib/.jshintrc'
// },
// src: ['lib/**/*.js']
// },
test: {
src: ['test/**/*.js']
},
ignore_warning: {
options: {
'-W098': true,
},
}
},
watch: {
gruntfile: {
files: '<%= jshint.gruntfile.src %>',
tasks: ['jshint:gruntfile']
},
lib: {
files: 'lib/*.js',
tasks: ['default']
},
test: {
files: '<%= jshint.test.src %>',
tasks: ['jshint:test', 'nodeunit']
},
jsx: {
files: 'jsx/**/*.jsx',
tasks: ['default']
},
},
browserify: {
build: {
src: ['jsx/**/*.jsx'],
dest: 'build/nnviz.js'
},
options: {
transform: [require('grunt-react').browserify]
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-react');
grunt.loadNpmTasks('grunt-browserify');
// Default task.
grunt.registerTask('default', ["browserify"]);
grunt.registerTask('full', ['jshint', 'nodeunit', 'concat', 'uglify', "browserify"]);
}; |
module.exports = function(grunt)
{
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
scsslint: {
lint: {
options: {
config: '.scss-lint.yml',
reporterOutput: 'scss-lint-reporter.xml'
}
}
},
libsass: {
test: {
options: {
outputStyle: 'expanded',
sourceMap: false,
includePaths: [
'./node_modules/sass-true/sass',
'./scss'
]
},
files: {
'./spec/results-libsass.css' : './spec/tests.scss'
}
},
demo: {
options: {
outputStyle: 'expanded',
sourceMap: false,
includePaths: ['./scss']
},
files: {
'./demo/styles/app.css' : './demo/styles/src/app.scss'
}
}
},
rubysass: {
test: {
options: {
style: 'expanded',
sourcemap: 'none',
loadPath: [
'./node_modules/sass-true/sass',
'./scss'
]
},
files: {
'./spec/results-rubysass.css' : './spec/tests.scss'
}
}
},
autoprefixer: {
demo: {
options: {
browsers: ['last 4 versions']
},
src: './demo/styles/app.css',
dest: './demo/styles/app.css'
}
}
});
grunt.loadNpmTasks('grunt-scss-lint');
grunt.loadNpmTasks('grunt-sass');
grunt.renameTask('sass', 'libsass');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.renameTask('sass', 'rubysass');
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.registerTask('test', ['libsass:test', 'rubysass:test']);
grunt.registerTask('lint', ['scsslint:lint']);
grunt.registerTask('demo', ['libsass:demo', 'autoprefixer:demo']);
};
|
/*
* pub-preview.js
*
* browserify entry point for preview helper script
* auto-injected into preview html by pub-editor
* binds preview doc to generator via jqueryview
*
* NOTE: uses history push/pop-state, which doesn't work in older browers
* Copyright (c) 2015-2022 Jürgen Leschner - github.com/jldec - MIT license
*
*/
$(function(){
var generator = window.parent.generator;
if (!generator) throw new Error('cannot bind preview to pub-generator');
var u = generator.util;
var opts = generator.opts;
var log = opts.log;
var appUrl = opts.appUrl;
// make generator available to jqueryview
window.generator = generator;
// bind jqueryview
var jqv = require('./jqueryview')(generator, window);
jqv.start();
// navigate to page= parameter on startup
var startPage = window.parent.location.search ?
require('querystring').parse(window.parent.location.search.slice(1)).page : '';
if (!startPage) {
startPage = u.unPrefix(u.unPrefix(window.parent.location.pathname, opts.staticRoot), opts.editorPrefix);
}
// https://github.com/visionmedia/page.js
window.pager = require('page');
window.pager('*', function(ctx) {
var path = ctx.path;
// strip origin from fq urls
path = u.unPrefix(path, appUrl);
// strip static root (see /server/client/init-opts.js)
path = u.unPrefix(path, opts.staticRoot);
// strip querystring
path = path.split('?')[0];
log('pager nav %s%s%s%s',
path,
ctx.querystring ? '?' + ctx.querystring : '',
ctx.hash ? '#' + ctx.hash : '',
!!startPage ? ' (forceReload)' : '');
generator.emit('nav',
path,
ctx.querystring ? '?' + ctx.querystring : '',
ctx.hash ? '#' + ctx.hash : '',
!!startPage
);
startPage = undefined; // only forceReload once on startPage
});
// start pager
window.pager( {dispatch:false} ); // auto-dispatch loses hash.
if (startPage) { pager.show(startPage); }
// hook custom client-side logic
if (window.onGenerator) { window.onGenerator(generator); }
});
|
(function () {
'use strict';
angular
.module('app')
.directive('locationString', locationString);
locationString.$inject = [];
/* @ngInject */
function locationString() {
var directive = {
replace: true,
bindToController: true,
controller: LocationStringController,
controllerAs: 'vm',
restrict: 'EA',
templateUrl: 'layout/location-string/location-string.view.html',
scope: {
mapConfig: '=?'
}
};
return directive;
}
LocationStringController.$inject = ['modalService'];
function LocationStringController(modalService) {
var vm = this;
vm.openLocationModal = openLocationModal;
activate();
function activate() {
}
function openLocationModal() {
modalService.showMapModal(angular.copy(vm.mapConfig));
}
}
})(); |
import React from 'react'
import AddReview from '../Forms/AddReview'
export default class ItemContainer extends React.Component {
constructor(props) {
super(props)
this.state = {
showComponent: false
}
this.onButtonClick = this.onButtonClick.bind(this)
}
onButtonClick() {
this.setState({
showComponent: true
});
}
render() {
const itemId = this.props.itemId
return (
<div>
<button id="buttontext" onClick={this.onButtonClick}>Add Review</button>
{this.state.showComponent ?
<AddReview itemId={itemId} /> :
null
}
</div>
)
}
}
/// need to ask about implementing this with react-redux
|
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _getPrototypeOf = require('babel-runtime/core-js/object/get-prototype-of');
var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf);
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
var _createClass2 = require('babel-runtime/helpers/createClass');
var _createClass3 = _interopRequireDefault(_createClass2);
var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
var _inherits2 = require('babel-runtime/helpers/inherits');
var _inherits3 = _interopRequireDefault(_inherits2);
var _Expression2 = require('../Expression');
var _Expression3 = _interopRequireDefault(_Expression2);
var _getFunctionParams = require('./utils/getFunctionParams');
var _getFunctionParams2 = _interopRequireDefault(_getFunctionParams);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var ArrowFunctionExpression = function (_Expression) {
(0, _inherits3.default)(ArrowFunctionExpression, _Expression);
function ArrowFunctionExpression(childNodes) {
(0, _classCallCheck3.default)(this, ArrowFunctionExpression);
var _this = (0, _possibleConstructorReturn3.default)(this, (ArrowFunctionExpression.__proto__ || (0, _getPrototypeOf2.default)(ArrowFunctionExpression)).call(this, 'ArrowFunctionExpression', childNodes));
_this.id = null;
_this.generator = false;
_this.isFunction = true;
return _this;
}
(0, _createClass3.default)(ArrowFunctionExpression, [{
key: '_acceptChildren',
value: function _acceptChildren(children) {
var params = [];
var async = false;
if (children.isToken('Identifier', 'async')) {
async = true;
children.passToken('Identifier', 'async');
children.skipNonCode();
}
if (children.isToken('Punctuator', '(')) {
params = (0, _getFunctionParams2.default)(children);
children.skipNonCode();
} else if (children.currentElement.isPattern) {
params.push(children.currentElement);
children.moveNext();
children.skipNonCode();
}
children.passToken('Punctuator', '=>');
children.skipNonCode();
var expression = !children.currentElement.isStatement;
var body = void 0;
if (expression) {
body = children.passExpression();
} else {
body = children.passStatement();
}
children.assertEnd();
this.async = async;
this.params = params;
this.body = body;
this.expression = expression;
}
}]);
return ArrowFunctionExpression;
}(_Expression3.default);
exports.default = ArrowFunctionExpression;
//# sourceMappingURL=ArrowFunctionExpression.js.map |
function Soundcloud($scope, $http, SoundCloudService, SpeechService, Focus) {
//Initialize SoundCloud
SoundCloudService.init();
//SoundCloud search and play
SpeechService.addCommand('sc_play', function (query) {
SoundCloudService.searchSoundCloud(query).then(function (response) {
if (response[0].artwork_url) {
$scope.scThumb = response[0].artwork_url.replace("-large.", "-t500x500.");
} else {
$scope.scThumb = 'http://i.imgur.com/8Jqd33w.jpg?1';
}
$scope.scWaveform = response[0].waveform_url;
$scope.scTrack = response[0].title;
Focus.change("sc");
SoundCloudService.play();
});
});
//SoundCloud stop
SpeechService.addCommand('sc_pause', function () {
SoundCloudService.pause();
Focus.change("default");
});
//SoundCloud resume
SpeechService.addCommand('sc_resume', function () {
SoundCloudService.play();
Focus.change("sc");
});
//SoundCloud replay
SpeechService.addCommand('sc_replay', function () {
SoundCloudService.replay();
Focus.change("sc");
});
}
angular.module('SmartMirror')
.controller('Soundcloud', Soundcloud); |
var fs = require( 'fs.extra' );
var util = require( 'util' );
var path = require( 'path' );
var PaginationGenerator = require( './PaginationGenerator' ).PaginationGenerator;
Array.prototype.contains = function( val ) {
return this.indexOf( val ) != -1;
};
Array.prototype.difference = function( arr ) {
var diff = [];
for( var i = 0; i < this.length; i++ ) {
if( !arr.contains( this[ i ] ) ) {
diff.push( this[ i ] );
}
}
return diff;
};
exports.getFilterPageTemplate = function() {
return fs.readFileSync( 'public/_layouts/filter-page.jade' ).toString();
}
exports.getPostData = function() {
return JSON.parse( fs.readFileSync( 'public/posts/_data.json').toString() );
}
exports.getHashtagPages = function() {
var pages = fs.readdirSync( 'public/filter' );
for( var i = 0; i < pages.length; i++ ) {
pages[ i ] = '#' + path.basename( pages[ i ], '.jade' );
}
return pages;
}
exports.createHashtagFilterPage = function( hashtag, filteredPostData ) {
var template = exports.getFilterPageTemplate();
var postsPerPage = JSON.parse( fs.readFileSync( 'harp.json' ).toString() ).globals.postsPerPage;
var filterDir = '/filter/' + hashtag + '/';
fs.mkdirpSync( 'public' + filterDir );
var options = {
postsPerPage: postsPerPage,
postsData: filteredPostData,
firstPage: {
dir: filterDir,
fileName: '1.jade',
title: '#' + hashtag + ' - Page 1',
layoutPath: '../../'
},
page: {
dir: filterDir,
title: '#' + hashtag + ' - Page ',
layoutPath: '../../'
}
};
new PaginationGenerator( options ).generate();
}
exports.removeHashtagFilterPage = function( hashtag ) {
fs.rmrfSync( 'public/filter/' + hashtag );
}
exports.createFilterPages = function() {
var data = exports.getPostData();
var tags = [];
var hashtagPages = exports.getHashtagPages();
for( var i = 0; i < data.length; i++ ) {
for( var tag in data[ i ].tags ) {
if( !tags.contains( tag ) ) {
tags.push( tag );
}
}
}
var pagesToCreate = tags;
var pagesToRemove = hashtagPages.difference( tags );
for( var i = 0; i < pagesToCreate.length; i++ ) {
var filteredPostData = [];
for( var j = 0; j < data.length; j++ ) {
if( data[ j ].tags[ pagesToCreate[ i ] ] ) {
filteredPostData.push( data[ j ] );
}
}
exports.createHashtagFilterPage( pagesToCreate[ i ].slice( 1, pagesToCreate[ i ].length ), filteredPostData );
}
for( var i = 0; i < pagesToRemove.length; i++ ) {
exports.removeHashtagFilterPage( pagesToRemove[ i ].slice( 1, pagesToRemove[ i ].length ) );
}
return {
pagesCreated: pagesToCreate,
pagesRemoved: pagesToRemove
};
} |
'use strict';
var chai = require('chai');
var expect = chai.expect;
describe('file-icon', function () {
var fileIcon = require('../lib');
describe('exports', function () {
it('should expose a function', function () {
expect(fileIcon).to.be.a('function');
});
});
}); |
const _ = require('lodash');
function checkCount(value, {count, minCount, maxCount} = {}) {
const size = _.size(value);
return (!count || size === count) &&
(!minCount || size >= minCount) &&
(!maxCount || size <= maxCount);
}
module.exports = {
checkCount
};
|
"use babel";
import { defaultConfig } from "../lib/config";
import Path from "path";
import NotesFileFilter from "../lib/notes-file-filter";
describe("notes-file-filter", () => {
let notesFileFilter;
beforeEach(function() {
atom.config.set(
"textual-velocity.ignoredNames",
defaultConfig.ignoredNames.default
);
atom.config.set(
"textual-velocity.excludeVcsIgnoredPaths",
defaultConfig.excludeVcsIgnoredPaths.default
);
notesFileFilter = new NotesFileFilter(__dirname, {
exclusions: atom.config.get("textual-velocity.ignoredNames"),
excludeVcsIgnores: atom.config.get(
"textual-velocity.excludeVcsIgnoredPaths"
)
});
});
describe(".isAccepted", function() {
it("returns true for any text file", function() {
expect(notesFileFilter.isAccepted(Path.join(__dirname, "file.txt"))).toBe(
true
);
expect(notesFileFilter.isAccepted(Path.join(__dirname, "file.md"))).toBe(
true
);
expect(notesFileFilter.isAccepted(Path.join(__dirname, "file.js"))).toBe(
true
);
expect(
notesFileFilter.isAccepted(Path.join(__dirname, "file.json"))
).toBe(true);
expect(
notesFileFilter.isAccepted(Path.join(__dirname, "file.bash"))
).toBe(true);
});
it("returns false for any non-text file", function() {
expect(notesFileFilter.isAccepted(Path.join(__dirname, "file.exe"))).toBe(
false
);
expect(notesFileFilter.isAccepted(Path.join(__dirname, "file.jpg"))).toBe(
false
);
expect(notesFileFilter.isAccepted(Path.join(__dirname, "file.zip"))).toBe(
false
);
expect(notesFileFilter.isAccepted(Path.join(__dirname, "file.pdf"))).toBe(
false
);
});
it("returns false for any excluded file", function() {
expect(
notesFileFilter.isAccepted(Path.join(__dirname, ".git/index"))
).toBe(false);
expect(
notesFileFilter.isAccepted(Path.join(__dirname, ".DS_Store"))
).toBe(false);
});
it("returns false for nv/nvalt settings file", function() {
expect(
notesFileFilter.isAccepted(Path.join(__dirname, "Notes & Settings"))
).toBe(false);
});
});
});
|
//This is the 2D Frame script extended out to 3D Frame calculations
//Gradient generator credit: https://www.strangeplanet.fr/work/gradient-generator/index.php
var undeformed = [{state: true}];
var deformed = [{state: true}];
var scene = document.querySelector('a-scene');
var DefNode = [];
var NodeList = [];
var matProps = [
{YoungsModulus: 1.5E9},
{radius: 0.01},
{maxAllowableStress: 1E8},
{scaleFactor: 1.0}
];
var resetNode =
[ { nodeName: 'Node0',
x: 0.4,
y: 0.4,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node1',
x: 0.4,
y: 0.4,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node2',
x: 1.4,
y: 0.4,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node3',
x: 1.4,
y: 0.4,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node4',
x: 0.4,
y: 0.9,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node5',
x: 0.4,
y: 0.9,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node6',
x: 1.4,
y: 0.9,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node7',
x: 1.4,
y: 0.9,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node8',
x: 0.4,
y: 1.4,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node9',
x: 0.4,
y: 1.4,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node10',
x: 1.4,
y: 1.4,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node11',
x: 1.4,
y: 1.4,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 } ];
var Node =
[ { nodeName: 'Node0',
x: 0.4,
y: 0.4,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node1',
x: 0.4,
y: 0.4,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: -50,
forceY: -50,
forceZ: 5000,
fdist: 0 },
{ nodeName: 'Node2',
x: 1.4,
y: 0.4,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: -50,
forceY: -50,
forceZ: 5000,
fdist: 0 },
{ nodeName: 'Node3',
x: 1.4,
y: 0.4,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node4',
x: 0.4,
y: 0.9,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node5',
x: 0.4,
y: 0.9,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node6',
x: 1.4,
y: 0.9,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node7',
x: 1.4,
y: 0.9,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node8',
x: 0.4,
y: 1.4,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node9',
x: 0.4,
y: 1.4,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node10',
x: 1.4,
y: 1.4,
z: 1.4,
fixedX: 0,
fixedY: 0,
fixedZ: 0,
xRot: 0,
yRot: 0,
zRot: 0,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 },
{ nodeName: 'Node11',
x: 1.4,
y: 1.4,
z: 0.4,
fixedX: 1,
fixedY: 1,
fixedZ: 1,
xRot: 1,
yRot: 1,
zRot: 1,
forceX: 0,
forceY: 0,
forceZ: 0,
fdist: 0 } ];
var Elem =
[ { elemName: 'Elem0', nodeA: 0, nodeB: 1, thic: matProps[1].radius },
{ elemName: 'Elem1', nodeA: 1, nodeB: 2, thic: matProps[1].radius },
{ elemName: 'Elem2', nodeA: 2, nodeB: 3, thic: matProps[1].radius },
{ elemName: 'Elem3', nodeA: 3, nodeB: 0, thic: matProps[1].radius },
{ elemName: 'Elem4', nodeA: 4, nodeB: 5, thic: matProps[1].radius },
{ elemName: 'Elem5', nodeA: 5, nodeB: 6, thic: matProps[1].radius },
{ elemName: 'Elem6', nodeA: 6, nodeB: 7, thic: matProps[1].radius },
{ elemName: 'Elem7', nodeA: 7, nodeB: 4, thic: matProps[1].radius },
{ elemName: 'Elem8', nodeA: 0, nodeB: 4, thic: matProps[1].radius },
{ elemName: 'Elem9', nodeA: 1, nodeB: 5, thic: matProps[1].radius },
{ elemName: 'Elem10', nodeA: 2, nodeB: 6, thic: matProps[1].radius },
{ elemName: 'Elem11', nodeA: 3, nodeB: 7, thic: matProps[1].radius },
{ elemName: 'Elem12', nodeA: 4, nodeB: 8, thic: matProps[1].radius },
{ elemName: 'Elem13', nodeA: 5, nodeB: 9, thic: matProps[1].radius },
{ elemName: 'Elem14', nodeA: 6, nodeB: 10, thic: matProps[1].radius },
{ elemName: 'Elem15', nodeA: 7, nodeB: 11, thic: matProps[1].radius },
{ elemName: 'Elem16', nodeA: 8, nodeB: 9, thic: matProps[1].radius },
{ elemName: 'Elem17', nodeA: 9, nodeB: 10, thic: matProps[1].radius },
{ elemName: 'Elem18', nodeA: 10, nodeB: 11, thic: matProps[1].radius },
{ elemName: 'Elem19', nodeA: 11, nodeB: 8, thic: matProps[1].radius } ];
var recompute = [{Analyze: function(){DoAnalysis()}},
{Reset: function(){
for (var i = 0; i < Node.length; i = i+1) {
if(Node[i].forceY != 0){
var idCheck = 'Node'+String(i)+'.fy';
var arr = document.getElementById(idCheck);
arr.setAttribute('visible', 'false');
Node[i].forceY = 0;
}
if(Node[i].forceX != 0){
var idCheck = 'Node'+String(i)+'.fx';
var arr = document.getElementById(idCheck);
arr.setAttribute('visible', 'false');
Node[i].forceX = 0;
}
if(Node[i].forceZ != 0){
var idCheck = 'Node'+String(i)+'.fz';
var arr = document.getElementById(idCheck);
arr.setAttribute('visible', 'false');
Node[i].forceZ = 0;
}
Node[i].x = resetNode[i].x;
Node[i].y = resetNode[i].y;
Node[i].z = resetNode[i].z;
var moveNode = document.getElementById(Node[i].nodeName);
moveNode.setAttribute('position', {x: Node[i].x, y: Node[i].y, z: Node[i].z});
}
matProps[0].YoungsModulus = 1.5E9;
matProps[1].radius = 0.01;
matProps[2].maxAllowableStress = 1E8;
matProps[3].scaleFactor = 1.0;
updateStruct();
for (var i = 0; i < Elem.length; i = i+1) {
var tube = document.getElementById('DefElem'+String(i));
var color = '#texture0';
AFRAME.utils.entity.setComponentProperty(tube,'material.src',color);
}
}}];
function viewUndef(){
var model = document.getElementById('undefModel');
var current = undeformed[0].state;
if(current == true){
model.setAttribute('visible', 'true');
}
else if(current == false){
model.setAttribute('visible', 'false');
}
};
function viewDef(){
var model = document.getElementById('defModel');
var current = deformed[0].state;
if(current == true){
model.setAttribute('visible', 'true');
}
else if(current == false){
model.setAttribute('visible', 'false');
}
}
var stress;
var color = '#texture0';
// Textures generated at:https://angrytools.com/gradient/image/
//var gradient = [ "#001EFF", "#3CFF00", "#FFEE00", "#FFAE00", "#FF7300", "#FF0000", "#FFFFFF"];
//var gradient = ['0 30 255','60 255 0','255 238 0','255 174 0','255 155 0','255 255 255'];
//var gradient = ["#001EFF", "#1469AA", "#28B455", "#3CFF00", "#9DF600", "#FFEE00", "#FFCE00", "#FFAE00", "#FF9000", "#FF7300", "#FF3900", "#FF0000", "#FF7F7F", "#FFFFFF"];
function changeThic(){
for (var j = 0; j < Elem.length; j = j+1) {
Elem[j].thic = matProps[1].radius;
tube = document.getElementById(Elem[j].elemName);
if (tube != null){
tube.setAttribute('radius', Elem[j].thic);
}
defTube = document.getElementById('Def'+Elem[j].elemName);
if (defTube != null){
defTube.setAttribute('radius', Elem[j].thic);
}
}
}
function changeScale(){
var scale = matProps[3].scaleFactor;
console.log(scale);
var scaleF = '';
scaleF = scaleF.concat(scale, ' ', scale, ' ', scale) ;
var undef = document.getElementById('undefModel');
undef.setAttribute('scale', scaleF);
var def = document.getElementById('defModel');
def.setAttribute('scale', scaleF);
DoAnalysis();
}
function vizChangeY(){
for (var i = 0; i < Node.length; i = i+1) {
var idCheck = 'Node'+String(i)+'.fy';
var arr = document.getElementById(idCheck);
var forceY = Node[i].forceY;
var offset = 0.215;
if(forceY==0){
arr.setAttribute('visible', 'false');
}
else if(forceY>0){
var rotation = '0 0 0'
arr.setAttribute('visible', 'true');
arr.setAttribute('rotation', rotation);
}
else if(forceY<0){
offset = -offset;
var rotation = '0 0 180'
arr.setAttribute('visible', 'true');
arr.setAttribute('rotation', rotation);
}
var pos = {x: 0, y: offset, z: 0};
arr.setAttribute('position', pos);
}
}
function vizChangeX(){
for (var i = 0; i < Node.length; i = i+1) {
var idCheck = 'Node'+String(i)+'.fx';
var arr = document.getElementById(idCheck);
var forceX = Node[i].forceX;
var offset = 0.215;
if(forceX==0){
arr.setAttribute('visible', 'false');
}
else if(forceX>0){
var rotation = '0 0 -90'
arr.setAttribute('visible', 'true');
arr.setAttribute('rotation', rotation);
}
else if(forceX<0){
offset = -offset;
var rotation = '0 0 90'
arr.setAttribute('visible', 'true');
arr.setAttribute('rotation', rotation);
}
var pos = {x: offset, y: 0, z: 0};
arr.setAttribute('position', pos);
};
}
function vizChangeZ(){
for (var i = 0; i < Node.length; i = i+1) {
var idCheck = 'Node'+String(i)+'.fz';
var arr = document.getElementById(idCheck);
var forceZ = Node[i].forceZ;
var offset = 0.215;
if(forceZ==0){
arr.setAttribute('visible', 'false');
}
else if(forceZ>0){
var rotation = '0 270 -90'
arr.setAttribute('visible', 'true');
arr.setAttribute('rotation', rotation);
var pos = {x: 0, y: 0, z: offset};
arr.setAttribute('position', pos);
}
else if(forceZ<0){
offset = -offset;
var rotation = '0 270 90'
arr.setAttribute('visible', 'true');
arr.setAttribute('rotation', rotation);
var pos = {x: 0, y: 0, z: offset};
arr.setAttribute('position', pos);
}
}
}
function addForceArrow (nodeID, force, dir) {
var scene = document.querySelector('a-scene');
var nodeUsed = document.getElementById(nodeID);
var cyl = document.createElement('a-entity');
cyl.setAttribute('mixin', 'down Cyl');
nodeUsed.appendChild(cyl);
var cone = document.createElement('a-entity');
var offset = 0.215;
cone.setAttribute('mixin', 'Cone');
cyl.appendChild(cone);
if(dir == 'y'){
var cylID = String(nodeID.substr(3))+'.fy';
cyl.setAttribute('id', cylID);
if(force==0){
cyl.setAttribute('visible', 'false');
}
else if(force>0){
var rotation = '0 0 0'
cyl.setAttribute('visible', 'true');
cyl.setAttribute('rotation', rotation);
}
else if(force<0){
var rotation = '0 0 180'
cyl.setAttribute('visible', 'true');
cyl.setAttribute('rotation', rotation);
offset = -offset;
}
var pos = {x: 0, y: offset, z: 0};
cyl.setAttribute('position', pos);
}
else if(dir =='x'){
var cylID = String(nodeID.substr(3))+'.fx';
cyl.setAttribute('id', cylID);
if(force==0){
cyl.setAttribute('visible', 'false');
}
else if(force>0){
var rotation = '0 0 -90'
cyl.setAttribute('visible', 'true');
cyl.setAttribute('rotation', rotation);
}
else if(force<0){
var rotation = '0 0 90'
cyl.setAttribute('visible', 'true');
cyl.setAttribute('rotation', rotation);
offset = -offset;
}
var pos = {x: offset, y: 0, z: 0};
cyl.setAttribute('position', pos);
}
else if(dir =='z'){
var cylID = String(nodeID.substr(3))+'.fz';
cyl.setAttribute('id', cylID);
if(force==0){
cyl.setAttribute('visible', 'false');
}
else if(force>0){
var rotation = '0 270 -90'
cyl.setAttribute('visible', 'true');
cyl.setAttribute('rotation', rotation);
var pos = {x: 0, y: 0, z: offset};
cyl.setAttribute('position', pos);
}
else if(force<0){
offset = -offset;
var rotation = '0 270 90'
cyl.setAttribute('visible', 'true');
cyl.setAttribute('rotation', rotation);
var pos = {x: 0, y: 0, z: offset};
cyl.setAttribute('position', pos);
}
}
}
function plotDot (scene, position, size, color, id, text) {
var sphere = document.createElement('a-entity');
var parent = document.getElementById('undefModel');
sphere.setAttribute('class', 'node');
sphere.setAttribute('mixin', 'node');
sphere.setAttribute('radius', size);
sphere.setAttribute('position', position);
sphere.setAttribute('color', "#ffffff");
sphere.setAttribute('id', id);
parent.appendChild(sphere);
//console.log(Object.keys(sphere.components).length);
//console.log(Object.values(sphere.components));
if(Node[Number(id.substr(4))].fixedX == 1){ AFRAME.utils.entity.setComponentProperty(sphere,'grabbable.suppressX','true');}
if(Node[Number(id.substr(4))].fixedY == 1){ AFRAME.utils.entity.setComponentProperty(sphere,'grabbable.suppressY','true');}
if(Node[Number(id.substr(4))].fixedZ == 1){ AFRAME.utils.entity.setComponentProperty(sphere,'grabbable.suppressZ','true');}
//console.log(sphere.getAttribute('suppressX'));
// Functions after this //
sphere.addEventListener('mouseenter', function (evt) {
var oldTextPos = evt.detail.intersection.point;
var newTextPos = {x: oldTextPos.x - 0.25, y: oldTextPos.y - 0.25, z: oldTextPos.z + 0.25}
//console.log(newTextPos);
var i = sphere.getAttribute('id').substr(4);
text.setAttribute('position',newTextPos);
if(Node[Number(id.substr(4))].fixedX == 1){
var textToShow = id.concat(' = Fixed');
}
else{
var textToShow = id.concat(' , Force = ', String(Node[i].forceY));
}
text.setAttribute('value',textToShow);
text.setAttribute('visible',true);
sphere.setAttribute('scale', {x: 1.3, y: 1.3, z: 1.3});
});
sphere.addEventListener('mouseleave', function () {
sphere.setAttribute('scale', {x: 1, y: 1, z: 1});
text.setAttribute('visible',false);
});
sphere.addEventListener('grab-end', function (evt) {
//console.log(sphere.getAttribute('id'));
//console.log(sphere.getAttribute('position').x);
var i = sphere.getAttribute('id').substr(4);
Node[i].x = sphere.getAttribute('position').x;
Node[i].y = sphere.getAttribute('position').y;
Node[i].z = sphere.getAttribute('position').z;
updateStruct();
});
};
function plotDefDot (scene, position, size, color, id, text) {
var sphere = document.createElement('a-sphere');
var parent = document.getElementById('defModel');
sphere.setAttribute('radius', size);
sphere.setAttribute('position', position);
sphere.setAttribute('color', "#000000");
sphere.setAttribute('id', id);
sphere.addEventListener('mouseenter', function (evt) {
var oldTextPos = evt.detail.intersection.point;
var newTextPos = {x: oldTextPos.x - 0.25, y: oldTextPos.y - 0.25, z: oldTextPos.z + 0.25}
//console.log(newTextPos);
var i = sphere.getAttribute('id').substr(4);
text.setAttribute('position',newTextPos);
var textToShow = id.concat(' , ForceY = ', String(Node[i].forceY));
text.setAttribute('value',textToShow);
text.setAttribute('visible',true);
sphere.setAttribute('scale', {x: 1.3, y: 1.3, z: 1.3});
});
sphere.addEventListener('mouseleave', function () {
sphere.setAttribute('scale', {x: 1, y: 1, z: 1});
text.setAttribute('visible',false);
});
//console.log(sphere);
parent.appendChild(sphere);
addForceArrow(id,Node[Number(id.substr(7))].forceY,'y');
addForceArrow(id,Node[Number(id.substr(7))].forceX,'x');
addForceArrow(id,Node[Number(id.substr(7))].forceZ,'z');
};
function plotTube (scene, position, size, color, id, text) {
var tube = document.createElement('a-tube');
var parent = document.getElementById('undefModel');
//var location = new THREE.Vector3(0,0,0);
//console.log(location);
tube.setAttribute('radius', size);
tube.setAttribute('path', position);
//tube.setAttribute('position', location);
tube.setAttribute('material', color);
tube.setAttribute('shader', 'standard');
tube.setAttribute('id', id);
AFRAME.utils.entity.setComponentProperty(tube,'material.blending','additive');
AFRAME.utils.entity.setComponentProperty(tube,'material.opacity',0.75);
/*
tube.addEventListener('mouseenter', function (evt) {
var oldTextPos = evt.detail.intersection.point;
var newTextPos = {x: oldTextPos.x - 0.25, y: oldTextPos.y - 0.25, z: oldTextPos.z + 0.25}
//console.log(newTextPos);
text.setAttribute('position',newTextPos);
text.setAttribute('value',id);
text.setAttribute('visible',true);
tube.setAttribute('material', "color:white");
});
tube.addEventListener('mouseleave', function () {
tube.setAttribute('material', color);
text.setAttribute('visible',false);
});*/
//console.log(tube);
parent.appendChild(tube);
};
function plotDefTube (scene, position, size, color, id, text) {
var tube = document.createElement('a-tube');
var parent = document.getElementById('defModel');
tube.setAttribute('class', 'elem');
tube.setAttribute('mixin', 'elem');
tube.setAttribute('radius', size);
tube.setAttribute('path', position);
//tube.setAttribute('position', location);
tube.setAttribute('shader', 'standard');
tube.setAttribute('id', id);
AFRAME.utils.entity.setComponentProperty(tube,'material.src',color);
//AFRAME.utils.entity.setComponentProperty(tube,'material.side','back');
//tube.setAttribute('material.side', 'back');
tube.addEventListener('mouseenter', function (evt) {
var oldTextPos = evt.detail.intersection.point;
var newTextPos = {x: oldTextPos.x - 0.25, y: oldTextPos.y - 0.25, z: oldTextPos.z + 0.25}
var i = tube.getAttribute('id').substr(4);
text.setAttribute('position',newTextPos);
//var textToShow = id.concat(' , Stress = ', String(round(math.subset(stress,math.index(Number(i),0))/1E6),2)+ ' Mpa');
//text.setAttribute('value',textToShow);
text.setAttribute('visible',true);
});
tube.addEventListener('mouseleave', function () {
text.setAttribute('visible',false);
});
//console.log(tube);
parent.appendChild(tube);
//ascene = document.getElementById('scene');
//ascene.appendChild(tube);
};
function myPrint(){
console.log('Look what I can do!');
};
function updateStruct(){
//console.log('Moved sphere, time to redraw tube');
for (var j = 0; j < Elem.length; j = j+1) {
var nodeStart = Elem[j].nodeA;
var nodeEnd = Elem[j].nodeB;
var tubePos = '';
var nodex1 = Node[nodeStart].x;
var nodey1 = Node[nodeStart].y;
var nodez1 = Node[nodeStart].z;
var nodex2 = Node[nodeEnd].x;
var nodey2 = Node[nodeEnd].y;
var nodez2 = Node[nodeEnd].z;
tubePos = tubePos.concat(nodex1, ' ', nodey1, ' ', nodez1, ', ', nodex2, ' ', nodey2, ' ', nodez2)
var tube = document.getElementById(Elem[j].elemName);
tube.setAttribute('path', tubePos);
}
DoAnalysis();
};
var DoAnalysis = function(){
// Node[0].DOF = 2; //Adding a value-pair to a JSON object
// This Script is being updated for 3D Frame
console.log("Doing 3D Analysis");
var numElem = Elem.length;
var numNodes = Node.length;
var gDOF = numNodes*6;
var Kglobal = math.zeros(gDOF, gDOF);
var Qglobal = math.zeros(gDOF,1);
var dispBCs = math.zeros(gDOF, 1);
//var kArray = math.zeros(numElem, 10);
var elemDOFs = math.zeros(numElem, 12);
var elemLengths = math.zeros(1,numElem);
//Problem Parameters defined here
var E = matProps[0].YoungsModulus;
var G = E/2.8;
var r = matProps[1].radius;
var fx = 0;
var fy = 0;
//Square Cross Section
//var A = r*r;
//var Iz = math.pow(r,4)/12;
//var Iy = math.pow(r,4)/12;
// Holly's test case
//var A = 0.002*0.01;
//var Iy = (math.pow(0.002,3)*0.01)/12;
//var Iz = (math.pow(0.01,3)*0.002)/12;
// Circular Cross Section
var A = Math.PI*math.pow(r,2);
var Iz = Math.PI*math.pow(r,4)*0.25;
var Iy = Math.PI*math.pow(r,4)*0.25;
var J = Iy+Iz;
var EA = E*A;
var maxAllowableStress = matProps[2].maxAllowableStress;
var scaleFactor = matProps[3].scaleFactor;
for (var i = 0; i < numNodes; i = i+1) {
// Encodes dispBCs from Nodal data
dispBCs.subset(math.index((6*i),0),Node[i].fixedX);
dispBCs.subset(math.index((6*i)+1,0),Node[i].fixedY);
dispBCs.subset(math.index((6*i)+2,0),Node[i].fixedZ);
dispBCs.subset(math.index((6*i)+3,0),Node[i].xRot);
dispBCs.subset(math.index((6*i)+4,0),Node[i].yRot);
dispBCs.subset(math.index((6*i)+5,0),Node[i].zRot);
//Encodes Global Q matrix from Nodal data
Qglobal.subset(math.index((i*6),0),Node[i].forceX);
Qglobal.subset(math.index((i*6) +1,0),Node[i].forceY);
Qglobal.subset(math.index((i*6) +2,0),Node[i].forceZ);
}
//Element and Node Connectivity defined here
for (var i = 0; i < numElem; i = i+1) {
elemDOFs = math.subset(elemDOFs,math.index(i,0),(Elem[i].nodeA+1)*6-6); //Node 1 xDOF
elemDOFs = math.subset(elemDOFs,math.index(i,1),(Elem[i].nodeA+1)*6-5); //Node 1 yDOF
elemDOFs = math.subset(elemDOFs,math.index(i,2),(Elem[i].nodeA+1)*6-4); //Node 1 zDOF
elemDOFs = math.subset(elemDOFs,math.index(i,3),(Elem[i].nodeA+1)*6-3); //Node 1 xRot
elemDOFs = math.subset(elemDOFs,math.index(i,4),(Elem[i].nodeA+1)*6-2); //Node 1 yRot
elemDOFs = math.subset(elemDOFs,math.index(i,5),(Elem[i].nodeA+1)*6-1); //Node 1 zRot
elemDOFs = math.subset(elemDOFs,math.index(i,6),(Elem[i].nodeB+1)*6-6); //Node 2 xDOF
elemDOFs = math.subset(elemDOFs,math.index(i,7),(Elem[i].nodeB+1)*6-5); //Node 2 yDOF
elemDOFs = math.subset(elemDOFs,math.index(i,8),(Elem[i].nodeB+1)*6-4); //Node 2 zDOF
elemDOFs = math.subset(elemDOFs,math.index(i,9),(Elem[i].nodeB+1)*6-3); //Node 2 xRot
elemDOFs = math.subset(elemDOFs,math.index(i,10),(Elem[i].nodeB+1)*6-2); //Node 2 yRot
elemDOFs = math.subset(elemDOFs,math.index(i,11),(Elem[i].nodeB+1)*6-1); //Node 2 zRot
var elementDOF = [(Elem[i].nodeA+1)*6-6, (Elem[i].nodeA+1)*6-5, (Elem[i].nodeA+1)*6-4, (Elem[i].nodeA+1)*6-3, (Elem[i].nodeA+1)*6-2, (Elem[i].nodeA+1)*6-1,
(Elem[i].nodeB+1)*6-6, (Elem[i].nodeB+1)*6-5, (Elem[i].nodeB+1)*6-4, (Elem[i].nodeB+1)*6-3, (Elem[i].nodeB+1)*6-2, (Elem[i].nodeB+1)*6-1];
//I think this part is unneccesary but I'll code it anyway, might need TBD
var Xs = [Node[Elem[i].nodeA].x, Node[Elem[i].nodeB].x];
var Ys = [Node[Elem[i].nodeA].y, Node[Elem[i].nodeB].y];
Xs.sort();
Ys.sort();
if (Node[Elem[i].nodeA].x == Node[Elem[i].nodeB].x) {
var x3 = 0.6;
} else {
var x3 = ((Xs[1]-Xs[0])/2 + Xs[0]) + 0.01;
}
var y3 = Ys[1]+0.01;
var z3 = 0;
//
elemLengths[i] = math.sqrt(math.square(Node[Elem[i].nodeB].x - Node[Elem[i].nodeA].x) + math.square(Node[Elem[i].nodeB].y - Node[Elem[i].nodeA].y) + math.square(Node[Elem[i].nodeB].z - Node[Elem[i].nodeA].z))*scaleFactor;
var mass = elemLengths[i]*A*1175;
var k1 = E*A/elemLengths[i];
var k2 = 12*E*Iz/math.pow(elemLengths[i],3);
var k3 = 6*E*Iz/math.pow(elemLengths[i],2);
var k4 = 4*E*Iz/elemLengths[i];
var k5 = 2*E*Iz/elemLengths[i];
var k6 = 12*E*Iy/math.pow(elemLengths[i],3);
var k7 = 6*E*Iy/math.pow(elemLengths[i],2);
var k8 = 4*E*Iy/elemLengths[i];
var k9 = 2*E*Iy/elemLengths[i];
var k10 = G*J/elemLengths[i];
//var kArray = [elemLengths[i],E,Iy,Iz,k1,k2,k3,k4,k5,k6,k7,k8,k9,k10];
//console.table(kArray);
var a = math.matrix([[k1,0,0],
[0,k2,0],
[0,0,k6]]);
var b = math.matrix([[0,0,0],
[0,0,k3],
[0,-k7,0]]);
var negb = math.matrix([[0,0,0],
[0,0,-k3],
[0,k7,0]]);
var c = math.matrix([[k10,0,0],
[0,k8,0],
[0,0,k4]]);
var d = math.matrix([[-k10,0,0],
[0,k9,0],
[0,0,k5]]);
var one = math.matrix([
[k1,0,0,0,0,0,-k1,0,0,0,0,0],
[0,k2,0,0,0,k3,0,-k2,0,0,0,k3],
[0,0,k6,0,-k7,0,0,0,-k6,0,-k7,0]]);
var two = math.matrix([
[0,0,0,k10,0,0,0,0,0,-k10,0,0],
[0,0,-k7,0,k8,0,0,0,k3,0,k9,0],
[0,k3,0,0,0,k4,0,-k7,0,0,0,k5]]);
var three = math.matrix([
[-k1,0,0,0,0,0,k1,0,0,0,0,0],
[0,-k2,0,0,0,-k7,0,k2,0,0,0,-k3],
[0,0,-k6,0,k3,0,0,0,k6,0,k7,0]
]);
var four = math.matrix([
[0,0,0,-k10,0,0,0,0,0,k10,0,0],
[0,0,-k7,0,k9,0,0,0,k7,0,k8,0],
[0,k3,0,0,0,k5,0,-k3,0,0,0,k4]]);
var k = math.matrix([
[k1,0,0,0,0,0,-k1,0,0,0,0,0],
[0,k2,0,0,0,k3,0,-k2,0,0,0,k3],
[0,0,k6,0,-k7,0,0,0,-k6,0,-k7,0],
[0,0,0,k10,0,0,0,0,0,-k10,0,0],
[0,0,-k7,0,k8,0,0,0,k3,0,k9,0],
[0,k3,0,0,0,k4,0,-k7,0,0,0,k5],
[-k1,0,0,0,0,0,k1,0,0,0,0,0],
[0,-k2,0,0,0,-k7,0,k2,0,0,0,-k3],
[0,0,-k6,0,k3,0,0,0,k6,0,k7,0],
[0,0,0,-k10,0,0,0,0,0,k10,0,0],
[0,0,-k7,0,k9,0,0,0,k7,0,k8,0],
[0,k3,0,0,0,k5,0,-k3,0,0,0,k4]
]);
//var two = math.concat((math.transpose(b),c,b,d),1);
//var three = math.concat((math.transpose(a),math.transpose(b),a,-b),1);
//var three = math.concat((-math.transpose(a),math.transpose(b),a,negb),1);
//var four = math.concat((math.transpose(b),math.transpose(d),math.transpose(-b),c),1);
//console.log(one);
//var k = math.concat((one,two,three,four),0);
if (Node[Elem[i].nodeA].x == Node[Elem[i].nodeB].x && Node[Elem[i].nodeA].y == Node[Elem[i].nodeB].y ){
if( Node[Elem[i].nodeB].z > Node[Elem[i].nodeA].z){
var Lambda = math.matrix([[0,0,1],[0,1,0],[-1,0,0]]);
} else {
var Lambda = math.matrix([[0,0,-1],[0,1,0],[1,0,0]]);
}
} else {
var CXx = (Node[Elem[i].nodeB].x - Node[Elem[i].nodeA].x)/elemLengths[i];
var CYx = (Node[Elem[i].nodeB].y - Node[Elem[i].nodeA].y)/elemLengths[i];
var CZx = (Node[Elem[i].nodeB].z - Node[Elem[i].nodeA].z)/elemLengths[i];
var D = math.sqrt(CXx*CXx + CYx*CYx);
var CXy = -CYx/D;
var CYy = CXx/D;
var CZy = 0;
var CXz = -CXx*CZx/D;
var CYz = -CYx*CZx/D;
var CZz = D;
var Lambda = math.matrix([[CXx,CYx,CZx],[CXy,CYy,CZy],[CXz,CYz,CZz]]);
}
//console.log(Lambda);
var zeros39 = math.zeros(3, 9);
var zeros33 = math.zeros(3, 3);
var zeros36 = math.zeros(3, 6);
var one1 = math.concat(Lambda,zeros39,1);
var two2 = math.concat(zeros33,Lambda,zeros36,1);
var three3 = math.concat(zeros36,Lambda,zeros33,1);
var four4 = math.concat(zeros39,Lambda,1);
var R = math.concat(one1,two2,three3,four4,0);
//console.log(one1);
//console.log(two2);
//console.log(three3);
//console.log(four4);
//console.log(R);
//console.log(math.transpose(R));
var K0 = math.multiply(math.transpose(R),k);
var K1 = math.multiply(K0,R);
//console.log(K1);
for (var j = 0; j < 12; j = j+1) {
for (var k = 0; k < 12; k = k+1) {
var newIndex1 = elementDOF[j];
var newIndex2 = elementDOF[k];
var newK = math.add(Kglobal.subset(math.index(newIndex1,newIndex2)), K1.subset(math.index(j,k)));
//console.log(newK);
Kglobal.subset(math.index(newIndex1,newIndex2), newK);
}
}
}
//console.log(K1);
// Enforce Displacement BCs through penalty method
for (var i = 0; i < dispBCs._size[0]; i = i+1) {
var BCindex = math.subset(dispBCs,math.index(i,0));
//if Node is fixed
if (BCindex == 1){
for (var j = 0; j < 72; j = j+1) {
Kglobal.subset(math.index(i,j),0);
Kglobal.subset(math.index(j,i),0);
Qglobal.subset(math.index(i,0),0);
Kglobal.subset(math.index(i,i),1);
}
//Kglobal.subset(math.index(i,i),math.multiply(math.subset(Kglobal,math.index(i,i)),1E15)); //Multiplies ii in Kglobal by 1E15 if fixed
//math.subset(Qglobal,math.index(i,0),math.multiply(math.subset(Kglobal,math.index(i,i)),0)); //Cancels out forces at node if fixed
}
}
const t0 = performance.now();
//var Kinv = math.inv(Kglobal)
//var qGlobal = math.multiply(Kinv,Qglobal);
var qGlobal = math.lusolve(Kglobal,Qglobal);
const t1 = performance.now();
console.log(`Call to solve matrix took ${t1 - t0} milliseconds.`);
/*
for (var i = 0; i < qGlobal._size[0]; i = i+1) {
if(Math.abs(qGlobal.subset(math.index(i,0)))< 1E-16){
qGlobal.subset(math.index(i,0),0)
}
}*/
//console.log(Kglobal);
//console.log(Qglobal);
//console.log(qGlobal);
/* stress = math.zeros(numElem,6);
var tstress = math.zeros(numElem,1);
var bstress = math.zeros(numElem,1);
for (var i = 0; i < numElem; i = i+1) {
var node1 = Elem[i].nodeA;
var node2 = Elem[i].nodeB;
var c = (Node[node2].x - Node[node1].x)/elemLengths[i];
var s = (Node[node2].y - Node[node1].y)/elemLengths[i];
var T = math.matrix([[c,s,0,0,0,0],[-s,c,0,0,0,0],[0,0,1,0,0,0],[0,0,0,c,s,0],[0,0,0,-s,c,0],[0,0,0,0,0,1]]);
//Do all the math here and assign them to the correct indices later.
var k1 = E*A/elemLengths[i];
var k2 = 12*E*Iz/math.pow(elemLengths[i],3);
var k3 = 6*E*Iz/math.pow(elemLengths[i],2);
var k4 = 4*E*Iz/elemLengths[i];
var k5 = 2*E*Iz/elemLengths[i];
var k6 = 12*E*Iy/math.pow(elemLengths[i],3);
var k7 = 6*E*Iy/math.pow(elemLengths[i],2);
var k8 = 4*E*Iy/elemLengths[i];
var k9 = 2*E*Iy/elemLengths[i];
var k10 = G*J/elemLengths[i];
var k = math.matrix([
[k1,0,0,0,0,0,-k1,0,0,0,0,0],
[0,k2,0,0,0,k3,0,-k2,0,0,0,k3],
[0,0,k6,0,-k7,0,0,0,-k6,0,-k7,0],
[0,0,0,k10,0,0,0,0,0,-k10,0,0],
[0,0,-k7,0,k8,0,0,0,k3,0,k9,0],
[0,k3,0,0,0,k4,0,-k7,0,0,0,k5],
[-k1,0,0,0,0,0,k1,0,0,0,0,0],
[0,-k2,0,0,0,-k7,0,k2,0,0,0,-k3],
[0,0,-k6,0,k3,0,0,0,k6,0,k7,0],
[0,0,0,-k10,0,0,0,0,0,k10,0,0],
[0,0,-k7,0,k9,0,0,0,k7,0,k8,0],
[0,k3,0,0,0,k5,0,-k3,0,0,0,k4]
]);
var qelem = math.zeros(6,1);
qelem.subset(math.index(0,0),math.subset(qGlobal,math.index(math.subset(elemDOFs,math.index(i,0)),0)));
qelem.subset(math.index(1,0),math.subset(qGlobal,math.index(math.subset(elemDOFs,math.index(i,1)),0)));
qelem.subset(math.index(2,0),math.subset(qGlobal,math.index(math.subset(elemDOFs,math.index(i,2)),0)));
qelem.subset(math.index(3,0),math.subset(qGlobal,math.index(math.subset(elemDOFs,math.index(i,3)),0)));
qelem.subset(math.index(4,0),math.subset(qGlobal,math.index(math.subset(elemDOFs,math.index(i,4)),0)));
qelem.subset(math.index(5,0),math.subset(qGlobal,math.index(math.subset(elemDOFs,math.index(i,5)),0)));
//New Force Method
var val1 = math.multiply(Kelem,qelem);
var GlobalForce = math.subtract(val1,Qdist); //ElemForce
var force = math.multiply(T,GlobalForce);
//Supposedly need to switch signs of first element?
force.subset(math.index(0,0),-1*force.subset(math.index(0,0)));
force.subset(math.index(1,0),-1*force.subset(math.index(1,0)));
force.subset(math.index(2,0),-1*force.subset(math.index(2,0)));
//console.log(force);
//Calculate Element Stresses
stress.subset(math.index(i,0),force.subset(math.index(0,0))/A - force.subset(math.index(2,0))*0.5*t/I); // Sig_xx top node 1
stress.subset(math.index(i,1),force.subset(math.index(0,0))/A - force.subset(math.index(2,0))*-0.5*t/I); // Sig_xx bot node 1
stress.subset(math.index(i,2),force.subset(math.index(1,0))/A); //Shear node 1
stress.subset(math.index(i,3),force.subset(math.index(3,0))/A - force.subset(math.index(5,0))*0.5*t/I); // Sig_xx top node 2
stress.subset(math.index(i,4),force.subset(math.index(0,0))/A - force.subset(math.index(5,0))*-0.5*t/I);
stress.subset(math.index(i,5),force.subset(math.index(4,0))/A);
tstress.subset(math.index(i,0),math.max(stress.subset(math.index(i,0)),stress.subset(math.index(i,3))));
bstress.subset(math.index(i,0),math.max(stress.subset(math.index(i,1)),stress.subset(math.index(i,4))));
//Elem[i].stress = stress.subset(math.index(i,0));
}
//console.log(Elem);
//console.log(tstress);
//console.log(bstress);
var maxStress = math.max(math.abs(stress));
var minStress = math.min(math.abs(stress));
var stressRange = maxStress - minStress;
//Solve for buckling
var buckling = math.zeros(numElem,1);
for (var i = 0; i < numElem; i = i+1) {
buckling.subset(math.index(i,0),-math.square(math.pi)*EA*0.0833/math.square(elemLengths[i]));
}
//console.log(maxStress);*/
var deformedNodes = math.zeros(numNodes,3);
for (var i = 0; i < numNodes; i = i+1) {
deformedNodes.subset(math.index(i,0), Node[i].x + math.subset(qGlobal,math.index(6*i,0)));
deformedNodes.subset(math.index(i,1), Node[i].y + math.subset(qGlobal,math.index((6*i)+1,0)));
deformedNodes.subset(math.index(i,2), Node[i].z + math.subset(qGlobal,math.index((6*i)+2,0)));
}
//console.log(deformedNodes);
for (i = 0; i < numNodes; i = i+1) {
//Node Objects are created and characterized here
DefNode[i] = { DefnodeName : 'DefNode'+ String(i), x : math.subset(deformedNodes,math.index(i,0)),
y : math.subset(deformedNodes,math.index(i,1)), z : math.subset(deformedNodes,math.index(i,2))};
//Node[i].x = math.subset(deformedNodes,math.index(i,0));
//Node[i].y = math.subset(deformedNodes,math.index(i,1));
}
//console.log(DefNode);
var scene = document.querySelector('a-scene');
var detailText = document.getElementById('detailText');
console.log('FEA Calculations complete');
var i = 0;
for (let item of Node) {
//console.log(Node[i].x);
newNode = document.getElementById('Def'+Node[i].nodeName);
if (newNode != null){
newNode.setAttribute('position', {x: DefNode[i].x, y: DefNode[i].y, z: DefNode[i].z});
}
else{
plotDefDot(scene, {x: DefNode[i].x, y: DefNode[i].y, z: DefNode[i].z}, 0.08, "#000000", 'Def'+Node[i].nodeName, detailText);
}
i = i+1;
};
var stressDiv = maxAllowableStress/7;
var lg0 = document.getElementById('lg0');
lg0.setAttribute('value','<'+ String(round(stressDiv*1/1E6, 2)) +' MPa');
var lg1 = document.getElementById('lg1');
lg1.setAttribute('value','<'+ String(round(stressDiv*2/1E6, 2)) +' MPa');
var lg2 = document.getElementById('lg2');
lg2.setAttribute('value','<'+ String(round(stressDiv*3/1E6, 2)) +' MPa');
var lg3 = document.getElementById('lg3');
lg3.setAttribute('value','<'+ String(round(stressDiv*4/1E6, 2)) +' MPa');
var lg4 = document.getElementById('lg4');
lg4.setAttribute('value','<'+ String(round(stressDiv*5/1E6, 2)) +' MPa');
var lg5 = document.getElementById('lg5');
lg5.setAttribute('value','<'+ String(round(stressDiv*6/1E6, 2)) +' MPa');
var lg6 = document.getElementById('lg6');
lg6.setAttribute('value','<'+ String(round(stressDiv*7/1E6, 2)) +' MPa');
var lg7 = document.getElementById('lg7');
lg7.setAttribute('value','>='+ String(round(maxAllowableStress/1E6, 2)) +' MPa');
//console.log(Node);
//console.log(stress);
for (var j = 0; j < Elem.length; j = j+1) {
var nodeStart = Elem[j].nodeA;
var nodeEnd = Elem[j].nodeB;
var tubePos = '';
var nodex1 = DefNode[nodeStart].x;
var nodey1 = DefNode[nodeStart].y;
var nodez1 = DefNode[nodeStart].z;
var nodex2 = DefNode[nodeEnd].x;
var nodey2 = DefNode[nodeEnd].y;
var nodez2 = DefNode[nodeEnd].z;
tubePos = tubePos.concat(nodex1, ' ', nodey1, ' ', nodez1, ', ', nodex2, ' ', nodey2, ' ', nodez2)
//var color = stressColor(math.abs(stress.subset(math.index(j,0))),stressDiv);
color = '#texture7';
//console.log(color);
tube = document.getElementById('Def'+Elem[j].elemName);
if (tube != null){
tube.setAttribute('path', tubePos);
AFRAME.utils.entity.setComponentProperty(tube,'material.src',color);
}
else{
plotDefTube(scene, tubePos, Elem[j].thic, color, 'Def'+Elem[j].elemName, detailText);
}
}
};
function stressColor(elemStress, stressDiv){
var segment = round(elemStress/(stressDiv+1));
//console.log(elemStress);
//console.log(segment);
if (segment==1){color = '#texture0';}
else if (segment==2){color = '#texture1';}
else if (segment==3){color = '#texture2';}
else if (segment==4){color = '#texture3';}
else if (segment==5){color = '#texture4';}
else if (segment==6){color = '#texture5';}
else if (segment==7){color = '#texture6';}
else if (segment>7){color = '#texture7';}
/*
switch (segment){
case 1:
color = '#texture0';
break;
case 2:
color = '#texture1';
break;
case 3:
color = '#texture2';
break;
case 4:
color = '#texture3';
break;
case 5:
color = '#texture4';
break;
case 6:
color = '#texture5';
break;
case 7:
color = '#texture6';
break;
case (segment >7):
color = '#texture7';
break;
}*/
//color = 'color: '.concat(color);
return color;
};
function round(value, precision) {
var multiplier = Math.pow(10, precision || 0);
return Math.round(value * multiplier) / multiplier;
}
AFRAME.registerComponent('web-fea', {
init: function () {
console.log("DOM fully loaded and parsed");
var scene = this.el;
//console.log(scene);
var detailText = document.getElementById('detailText');
//console.log(detailText);
var i = 0;
//var scaleFactor = matProps[4].scaling;
for (let item of Node) {
//console.log(Node[i].x);
NodeList.push({'nodeName': Node[i].nodeName});
//Node[i].x = Node[i].x*scaleFactor;
//Node[i].y = Node[i].y*scaleFactor;
//Node[i].z = Node[i].z*scaleFactor;
plotDot(scene, {x: Node[i].x, y: Node[i].y, z: Node[i].z}, 0.1, "#ffffff", Node[i].nodeName, detailText);
i = i+1;
};
for (var j = 0; j < Elem.length; j = j+1) {
var nodeStart = Elem[j].nodeA;
var nodeEnd = Elem[j].nodeB;
var tubePos = '';
var nodex1 = Node[nodeStart].x;
var nodey1 = Node[nodeStart].y;
var nodez1 = Node[nodeStart].z;
var nodex2 = Node[nodeEnd].x;
var nodey2 = Node[nodeEnd].y;
var nodez2 = Node[nodeEnd].z;
tubePos = tubePos.concat(nodex1, ' ', nodey1, ' ', nodez1, ', ', nodex2, ' ', nodey2, ' ', nodez2)
//console.log(tubePos);
plotTube(scene, tubePos, Elem[j].thic, "color:blue", Elem[j].elemName, detailText);
}
DoAnalysis();
}
});
|
/*globals define, debug*/
/*eslint-env node*/
/*eslint no-console: 0*/
/**
* @author pmeijer / https://github.com/pmeijer
*/
define(['debug'], function (_debug) {
'use strict';
// Separate namespaces using ',' a leading '-' will disable the namespace.
// Each part takes a regex.
// ex: localStorage.debug = '*,-socket\.io*,-engine\.io*'
// will log all but socket.io and engine.io
function createLogger(name, options) {
var log = typeof debug === 'undefined' ? _debug(name) : debug(name),
level,
levels = {
silly: 0,
input: 1,
verbose: 2,
prompt: 3,
debug: 4,
info: 5,
data: 6,
help: 7,
warn: 8,
error: 9
};
if (!options) {
throw new Error('options required in logger');
}
if (options.hasOwnProperty('level') === false) {
throw new Error('options.level required in logger');
}
level = levels[options.level];
if (typeof level === 'undefined') {
level = levels.info;
}
log.debug = function () {
if (log.enabled && level <= levels.debug) {
if (console.debug) {
log.log = console.debug.bind(console);
} else {
log.log = console.log.bind(console);
}
log.apply(this, arguments);
}
};
log.info = function () {
if (log.enabled && level <= levels.info) {
log.log = console.info.bind(console);
log.apply(this, arguments);
}
};
log.warn = function () {
if (log.enabled && level <= levels.warn) {
log.log = console.warn.bind(console);
log.apply(this, arguments);
}
};
log.error = function () {
if (log.enabled && level <= levels.error) {
log.log = console.error.bind(console);
log.apply(this, arguments);
} else {
console.error.apply(console, arguments);
}
};
log.fork = function (forkName, useForkName) {
forkName = useForkName ? forkName : name + ':' + forkName;
return createLogger(forkName, options);
};
log.forkWithOptions = function (_name, _options) {
return createLogger(_name, _options);
};
return log;
}
function createWithGmeConfig(name, gmeConfig) {
return createLogger(name, gmeConfig.client.log);
}
return {
create: createLogger,
createWithGmeConfig: createWithGmeConfig
};
}); |
describe('GridRow factory', function () {
var $q, $scope, grid, Grid, GridRow, gridUtil, gridClassFactory, $timeout;
beforeEach(module('ui.grid.ie'));
beforeEach(inject(function (_$q_, _$rootScope_, _Grid_, _GridRow_, _gridUtil_, _gridClassFactory_, _$timeout_) {
$q = _$q_;
$scope = _$rootScope_;
Grid = _Grid_;
GridRow = _GridRow_;
gridUtil = _gridUtil_;
gridClassFactory = _gridClassFactory_;
$timeout = _$timeout_;
}));
describe('binding', function() {
var grid;
var entity;
beforeEach(inject(function (_$q_, _$rootScope_, _Grid_, _GridRow_, _gridUtil_) {
grid = new Grid({id:'a'});
entity = {
simpleProp: 'simpleProp',
complexProp: { many: { paths: 'complexProp'}},
functionProp: function () {
return 'functionProp';
},
arrayProp: ['arrayProp']
};
entity['weird-prop'] = 'weird-prop';
}));
it('binds correctly to row.entity', function() {
var gridRow = new GridRow(entity,0,grid);
var col = {
field:'simpleProp'
};
expect(gridRow.getQualifiedColField(col)).toBe('row.entity[\'simpleProp\']');
});
});
describe('row visibility', function() {
var grid;
var rowsVisibleChanged;
beforeEach(function() {
rowsVisibleChanged = false;
grid = new Grid({id: 'a'});
grid.options.columnDefs = [{ field: 'col1' }];
for (var i = 0; i < 10; i++) {
grid.options.data.push({col1:'a_' + i});
}
grid.buildColumns();
grid.modifyRows(grid.options.data);
grid.setVisibleRows(grid.rows);
});
it('should set then unset forceInvisible on visible row, raising visible rows changed event', function () {
grid.api.core.on.rowsVisibleChanged( $scope, function() { rowsVisibleChanged = true; });
expect(grid.api.core.getVisibleRows(grid).length).toEqual(10, 'all rows visible');
grid.api.core.setRowInvisible(grid.rows[0]);
expect(grid.rows[0].invisibleReason.user).toBe(true);
expect(grid.rows[0].visible).toBe(false);
expect(rowsVisibleChanged).toEqual(true);
$scope.$apply();
$timeout.flush();
expect(grid.api.core.getVisibleRows(grid).length).toEqual(9, 'one row now invisible');
rowsVisibleChanged = false;
grid.api.core.clearRowInvisible(grid.rows[0]);
expect(grid.rows[0].invisibleReason.user).toBe(undefined);
expect(grid.rows[0].visible).toBe(true);
expect(rowsVisibleChanged).toEqual(true);
$scope.$apply();
$timeout.flush();
expect(grid.api.core.getVisibleRows(grid).length).toEqual(10, 'should be visible again');
});
it('should set forceInvisible on invisible row, then clear forceInvisible visible row, doesn\'t raise visible rows changed event', function () {
grid.api.core.on.rowsVisibleChanged( $scope, function() { rowsVisibleChanged = true; });
grid.rows[0].visible = false;
grid.api.core.setRowInvisible(grid.rows[0]);
expect(grid.rows[0].invisibleReason.user).toBe(true);
expect(grid.rows[0].visible).toBe(false);
expect(rowsVisibleChanged).toEqual(false);
grid.rows[0].visible = true;
grid.api.core.clearRowInvisible(grid.rows[0]);
expect(grid.rows[0].invisibleReason.user).toBe(undefined);
expect(grid.rows[0].visible).toBe(true);
expect(rowsVisibleChanged).toEqual(false);
});
it('row not found is OK, no event raised', function () {
grid.api.core.on.rowsVisibleChanged( $scope, function() { rowsVisibleChanged = true; });
grid.api.core.setRowInvisible(grid, {col1: 'not in grid'});
expect(rowsVisibleChanged).toEqual(false);
});
});
describe('row height', function() {
var grid;
var rowsVisibleChanged;
beforeEach(function() {
rowsVisibleChanged = false;
grid = new Grid({id: 'a'});
grid.options.columnDefs = [{ field: 'col1' }];
for (var i = 0; i < 10; i++) {
grid.options.data.push({col1:'a_' + i});
}
grid.buildColumns();
grid.modifyRows(grid.options.data);
grid.setVisibleRows(grid.rows);
});
it('should have a rowheight setter', function () {
var gridRow = new GridRow({},0,grid);
gridRow.height = 99;
expect(gridRow.$$height).toBe(99);
});
it('should flag the grid render containers to upate canvas heights', function () {
var gridRow = grid.rows[0];
grid.renderContainers.body.getCanvasHeight();
expect(grid.renderContainers.body.canvasHeightShouldUpdate).toBe(false);
expect(grid.renderContainers.body.$$canvasHeight).toBe(grid.options.data.length * grid.options.rowHeight);
gridRow.height = grid.options.rowHeight * 2;
expect(grid.renderContainers.body.canvasHeightShouldUpdate).toBe(true);
expect(grid.renderContainers.body.canvasHeightShouldUpdate).toBe(true);
expect(grid.renderContainers.body.getCanvasHeight()).toBe((grid.options.data.length * grid.options.rowHeight) + grid.options.rowHeight);
});
});
});
|
"use strict";
var DEFAULT_ENV = 'development';
var env = module.exports = {};
env.Envs = {
PROD: 'prod',
DEV: 'dev',
TEST: 'test'
};
env.map = {
production: env.Envs.PROD,
development: env.Envs.DEV,
test: env.Envs.TEST
};
env.env = function () {
return this.map[process.env.NODE_ENV || DEFAULT_ENV];
};
env.conf = function (config, aEnv) {
var env = aEnv || process.env.NODE_ENV || DEFAULT_ENV;
var envConfig = config[this.map[env]];
if (!envConfig) {
throw new Error("Could not find a configuration for env = " + env);
}
return envConfig;
};
|
var bb = require('backbone');
bb.sync = require('./src/idb-sync.js');
require('./src/idb-collection'); |
/* Copyright (c) 2010-2016 Richard Rodger and other contributors, MIT License */
'use strict'
// Node API modules
var Assert = require('assert')
var Events = require('events')
var Util = require('util')
// External modules.
var _ = require('lodash')
var Eraro = require('eraro')
var Executor = require('gate-executor')
var Jsonic = require('jsonic')
var Lrucache = require('lru-cache')
var Makeuse = require('use-plugin')
var Nid = require('nid')
var Norma = require('norma')
var Patrun = require('patrun')
var Parambulator = require('parambulator')
var Stats = require('rolling-stats')
var Zig = require('zig')
// Internal modules.
var Actions = require('./lib/actions')
var Common = require('./lib/common')
var Errors = require('./lib/errors')
var Legacy = require('./lib/legacy')
var Logging = require('./lib/logging')
var Optioner = require('./lib/optioner')
var Package = require('./package.json')
var Plugins = require('./lib/plugins')
var Print = require('./lib/print')
var Store = require('./lib/store')
var Transport = require('./lib/transport')
// Shortcuts
var arrayify = Function.prototype.apply.bind(Array.prototype.slice)
var internals = {
error: Eraro({
package: 'seneca',
msgmap: Errors,
override: true
}),
schema: Parambulator({
tag: { string$: true },
idlen: { integer$: true },
timeout: { integer$: true },
errhandler: { function$: true }
}, {
topname: 'options',
msgprefix: 'seneca({...}): '
}),
defaults: {
// Tag this Seneca instance, will be appended to instance identifier.
tag: '-',
// Standard length of identifiers for actions.
idlen: 12,
// Standard timeout for actions.
timeout: 11111,
// Register (true) default plugins. Set false to not register when
// using custom versions.
default_plugins: {
basic: true,
cluster: true,
'mem-store': true,
repl: true,
transport: true,
web: true
},
// Debug settings.
debug: {
// Throw (some) errors from seneca.act.
fragile: false,
// Fatal errors ... aren't fatal. Not for production!
undead: false,
// Print debug info to console
print: {
// Print options. Best used via --seneca.print.options.
options: false
},
// Trace action caller and place in args.caller$.
act_caller: false,
// Shorten all identifiers to 2 characters.
short_logs: false,
// Record and log callpoints (calling code locations).
callpoint: false
},
// Enforce strict behaviours. Relax when backwards compatibility needed.
strict: {
// Action result must be a plain object.
result: true,
// Delegate fixedargs override action args.
fixedargs: true,
// Adding a pattern overrides existing pattern only if matches exactly.
add: false,
// If no action is found and find is false, then no error returned along with empty object
find: true,
// Maximum number of times an action can call itself
maxloop: 11
},
// Action cache. Makes inbound messages idempotent.
actcache: {
active: true,
size: 11111
},
// Action executor tracing. See gate-executor module.
trace: {
act: false,
stack: false,
unknown: 'warn'
},
// Action statistics settings. See rolling-stats module.
stats: {
size: 1024,
interval: 60000,
running: false
},
// Wait time for plugins to close gracefully.
deathdelay: 11111,
// Default seneca-admin settings.
// TODO: move to seneca-admin!
admin: {
local: false,
prefix: '/admin'
},
// Plugin settings
plugin: {},
// Internal settings.
internal: {
// Close instance on these signals, if true.
close_signals: {
SIGHUP: true,
SIGTERM: true,
SIGINT: true,
SIGBREAK: true
},
// seneca.add uses catchall (pattern='') prior
catchall: false
},
// Log status at periodic intervals.
status: {
interval: 60000,
// By default, does not run.
running: false
},
// zig module settings for seneca.start() chaining.
zig: {},
pin: {
immediate: false // run pin function without waiting for pin event
},
// Bloomboard custom settings
bloomboard: {
longErrorLogs: true,
logSessionIds: true,
stripArgsFromLogs: [],
// run pin function without waiting for pin event
immediate: false
},
// backwards compatibility settings
legacy: {
// use old error codes, until version 3.x
error_codes: true,
// use parambulator for message validation, until version 3.x
validate: true
}
}
}
// Seneca is an EventEmitter.
function Seneca () {
Events.EventEmitter.call(this)
this.setMaxListeners(0)
}
Util.inherits(Seneca, Events.EventEmitter)
module.exports = function init (seneca_options, more_options) {
// Create instance.
var seneca = make_seneca(_.extend({}, seneca_options, more_options))
var options = seneca.options()
// FIX: plugin decorations do need to be sync
// needs thinking
seneca.decorate('hasplugin', Plugins.api_decorations.hasplugin)
seneca.decorate('findplugin', Plugins.api_decorations.findplugin)
seneca.decorate('plugins', Plugins.api_decorations.plugins)
if (options.legacy.validate) {
seneca.use(require('seneca-parambulator'))
}
// HACK: makes this sync
if (options.default_plugins.cluster) {
require('seneca-cluster').call(seneca, {})
}
// HACK: makes this sync
if (options.default_plugins.repl) {
require('seneca-repl').call(seneca, options.repl)
}
// Register default plugins, unless turned off by options.
if (options.default_plugins.basic) { seneca.use(require('seneca-basic')) }
if (options.default_plugins['mem-store']) { seneca.use(require('seneca-mem-store')) }
if (options.default_plugins.transport) { seneca.use(require('seneca-transport')) }
if (options.default_plugins.web) { seneca.use(require('seneca-web')) }
// Register plugins specified in options.
_.each(options.plugins, function (plugindesc) {
seneca.use(plugindesc)
})
return seneca
}
// Expose Seneca prototype for easier monkey-patching
module.exports.Seneca = Seneca
// To reference builtin loggers when defining logging options.
module.exports.loghandler = Logging.handlers
// Makes require('seneca').use(...) work by creating an on-the-fly instance.
module.exports.use = function () {
var instance = module.exports()
return instance.use.apply(instance, arrayify(arguments))
}
// Mostly for testing.
if (require.main === module) {
module.exports()
}
// Create a new Seneca instance.
// * _initial_options_ `o` → instance options
function make_seneca (initial_options) {
initial_options = initial_options || {} // ensure defined
// Create a private context.
var private$ = make_private()
// Create a new root Seneca instance.
var root = new Seneca()
// expose private for plugins
root.private$ = private$
// Create option resolver.
private$.optioner = Optioner(
initial_options.module || module.parent || module,
internals.defaults)
// Not needed after this point, and screws up debug printing.
delete initial_options.module
// Define options
var so = private$.optioner.set(initial_options)
// TODO: remove parambulator dep from Seneca; do this another way
internals.schema.validate(so, function (err) {
if (err) {
throw err
}
})
// Create internal tools.
var actnid = Nid({length: so.idlen})
var refnid = function () { return '(' + actnid() + ')' }
// These need to come from options as required during construction.
so.internal.actrouter = so.internal.actrouter || Patrun({ gex: true })
so.internal.subrouter = so.internal.subrouter || Patrun({ gex: true })
var callpoint = make_callpoint(so.debug.callpoint)
// Define public member variables.
root.root = root
root.start_time = Date.now()
root.fixedargs = {}
root.context = {}
root.version = Package.version
// Seneca methods. Official API.
root.add = api_add // Add a message pattern and action.
root.act = api_act // Perform action that matches pattern.
root.sub = api_sub // Subscribe to a message pattern.
root.use = api_use // Define a plugin.
root.listen = Transport.listen(callpoint) // Listen for inbound messages.
root.client = Transport.client(callpoint) // Send outbound messages.
root.export = api_export // Export plain objects from a plugin.
root.has = Actions.has // True if action pattern defined.
root.find = Actions.find // Find action by pattern
root.list = Actions.list // List (a subset of) action patterns.
root.ready = api_ready // Callback when plugins initialized.
root.close = api_close // Close and shutdown plugins.
root.options = api_options // Get and set options.
root.start = api_start // Start an action chain.
root.error = api_error // Set global error handler.
root.decorate = api_decorate // Decorate seneca object with functions
// Method aliases.
root.hasact = root.has
// Non-API methods.
root.logroute = api_logroute
root.register = Plugins.register(so, callpoint)
root.depends = api_depends
root.pin = api_pin
root.act_if = api_act_if
root.wrap = api_wrap
root.seneca = api_seneca
root.fix = api_fix
root.delegate = api_delegate
// Legacy API; Deprecated.
root.findact = root.find
// DEPRECATED
root.fail = Legacy.fail(so)
// Identifier generator.
root.idgen = Nid({length: so.idlen})
so.tag = so.tag || internals.defaults.tag
so.tag = so.tag === 'undefined' ? internals.defaults.tag : so.tag
// Create a unique identifer for this instance.
root.id = root.idgen() + '/' + root.start_time + '/' + process.pid + '/' + so.tag
if (so.debug.short_logs || so.log.short) {
so.idlen = 2
root.idgen = Nid({length: so.idlen})
root.id = root.idgen() + '/' + so.tag
}
root.name = 'Seneca/' + root.version + '/' + root.id
root.die = Common.makedie(root, {
type: 'sys',
plugin: 'seneca',
tag: root.version,
id: root.id,
callpoint: callpoint
})
// Configure logging
root.log = Logging.makelog(so.log, {
id: root.id,
start: root.start_time,
short: !!so.debug.short_logs
})
// Error events are fatal, unless you're undead. These are not the
// same as action errors, these are unexpected internal issues.
root.on('error', root.die)
// TODO: support options
private$.executor = Executor({
trace: _.isFunction(so.trace.act) ? so.trace.act
: (so.trace.act) ? make_trace_act({stack: so.trace.stack}) : false,
timeout: so.timeout,
error: function (err) {
Logging.log_exec_err(root, err)
},
msg_codes: {
timeout: 'action-timeout',
error: 'action-error',
callback: 'action-callback',
execute: 'action-execute',
abandoned: 'action-abandoned'
}
})
// setup status log
if (so.status.interval > 0 && so.status.running) {
private$.stats = private$.stats || {}
setInterval(function () {
var status = {
alive: (Date.now() - private$.stats.start),
act: private$.stats.act
}
root.log.info('status', status)
}, so.status.interval)
}
if (so.stats) {
private$.timestats = new Stats.NamedStats(so.stats.size, so.stats.interval)
if (so.stats.running) {
setInterval(function () {
private$.timestats.calculate()
}, so.stats.interval)
}
}
private$.plugins = {}
private$.exports = { options: Common.deepextend({}, so) }
private$.plugin_order = { byname: [], byref: [] }
private$.use = Makeuse({
prefix: 'seneca-',
module: module,
msgprefix: false,
builtin: ''
})
private$.actcache = (so.actcache.active
? Lrucache({ max: so.actcache.size })
: { set: _.noop })
private$.actrouter = so.internal.actrouter
private$.subrouter = so.internal.subrouter
root.on('newListener', function (eventname, eventfunc) {
if (eventname === 'ready') {
root.private$.executor.on('clear', eventfunc)
return
/*
if (!private$.wait_for_ready) {
private$.wait_for_ready = true
root.act('role:seneca,ready:true,gate$:true')
}
*/
}
})
root.toString = api_toString
root.util = {
deepextend: Common.deepextend,
recurse: Common.recurse,
clean: Common.clean,
copydata: Common.copydata,
nil: Common.nil,
pattern: Common.pattern,
print: Common.print,
pincanon: Common.pincanon,
router: function () { return Patrun() },
// TODO: deprecate?
argprops: Common.argprops
}
root.store = Store()
// Used for extending seneca with api_decorate
root._decorations = {}
// say hello, printing identifier to log
root.log.info('hello', root.toString(), callpoint())
// dump options if debugging
root.log.debug('options', function () {
return Util.inspect(so, false, null).replace(/[\r\n]/g, ' ')
})
if (so.debug.print.options) {
console.log('\nSeneca Options (' + root.id + '): before plugins\n' + '===\n')
console.log(Util.inspect(so, { depth: null }))
console.log('')
}
private$.action_modifiers = []
function api_logroute (entry, handler) {
if (arguments.length === 0) {
return root.log.router.toString()
}
entry.handler = handler || entry.handler
Logging.makelogroute(entry, root.log.router)
}
function api_depends () {
var self = this
var args = Norma('{pluginname:s deps:a? moredeps:s*}', arguments)
var deps = args.deps || args.moredeps
_.every(deps, function (depname) {
if (!_.includes(private$.plugin_order.byname, depname) &&
!_.includes(private$.plugin_order.byname, 'seneca-' + depname)) {
self.die(internals.error('plugin_required', { name: args.pluginname, dependency: depname }))
return false
}
else return true
})
}
function api_export (key) {
var self = this
// Legacy aliases
if (key === 'util') {
key = 'basic'
}
var exportval = private$.exports[key]
if (!exportval) {
return self.die(internals.error('export_not_found', {key: key}))
}
return exportval
}
// TODO: DEPRECATE
function api_pin (pattern, pinopts) {
var thispin = this
pattern = _.isString(pattern) ? Jsonic(pattern) : pattern
var methodkeys = []
for (var key in pattern) {
if (/[\*\?]/.exec(pattern[key])) {
methodkeys.push(key)
}
}
function make_pin (pattern) {
var api = {
toString: function () {
return 'pin:' + Common.pattern(pattern) + '/' + thispin
}
}
var calcPin = function () {
var methods = private$.actrouter.list(pattern)
methods.forEach(function (method) {
var mpat = method.match
var methodname = ''
for (var mkI = 0; mkI < methodkeys.length; mkI++) {
methodname += ((mkI > 0 ? '_' : '')) + mpat[methodkeys[mkI]]
}
api[methodname] = function (args, cb) {
var si = this && this.seneca ? this : thispin
var fullargs = _.extend({}, args, mpat)
si.act(fullargs, cb)
}
api[methodname].pattern$ = method.match
api[methodname].name$ = methodname
})
if (pinopts && pinopts.include) {
for (var i = 0; i < pinopts.include.length; i++) {
var methodname = pinopts.include[i]
if (thispin[methodname]) {
api[methodname] = Common.delegate(thispin, thispin[methodname])
}
}
}
}
var opts = {}
_.defaults(opts, pinopts, so.pin)
if (private$._isReady || opts.immediate) {
calcPin()
}
else {
root.once('pin', calcPin)
}
return api
}
return make_pin(pattern)
}
function api_sub () {
var self = this
var subargs = Common.parsePattern(self, arguments, 'action:f actmeta:o?')
var pattern = subargs.pattern
if (pattern.in$ == null &&
pattern.out$ == null &&
pattern.error$ == null &&
pattern.cache$ == null &&
pattern.default$ == null &&
pattern.client$ == null) {
pattern.in$ = true
}
if (!private$.handle_sub) {
private$.handle_sub = function (args, result) {
args.meta$ = args.meta$ || {}
if (args.meta$.entry !== true) {
return
}
var subfuncs = private$.subrouter.find(args)
if (subfuncs) {
args.meta$.sub = subfuncs.pattern
_.each(subfuncs, function (subfunc) {
try {
subfunc.call(self, args, result)
}
catch (ex) {
// TODO: not really satisfactory
var err = internals.error(ex, 'sub_function_catch', { args: args, result: result })
self.log.error(
'sub', 'err', args.meta$.id, err.message, args, err.stack)
}
})
}
}
// TODO: other cases
// Subs are triggered via events
self.on('act-in', annotate('in$', private$.handle_sub))
self.on('act-out', annotate('out$', private$.handle_sub))
}
function annotate (prop, handle_sub) {
return function (args, result) {
args = _.clone(args)
result = _.clone(result)
args[prop] = true
handle_sub(args, result)
}
}
var subs = private$.subrouter.find(pattern)
if (!subs) {
private$.subrouter.add(pattern, subs = [])
subs.pattern = Common.pattern(pattern)
}
subs.push(subargs.action)
return self
}
// ### seneca.add
// Add an message pattern and action function.
//
// `seneca.add(pattern, action)`
// * _pattern_ `o|s` → pattern definition
// * _action_ `f` → pattern action function
//
// `seneca.add(pattern_string, pattern_object, action)`
// * _pattern_string_ `s` → pattern definition as jsonic string
// * _pattern_object_ `o` → pattern definition as object
// * _action_ `f` → pattern action function
//
// The pattern is defined by the top level properties of the
// _pattern_ parameter. In the case where the pattern is a string,
// it is first parsed by
// [jsonic](https://github.com/rjrodger/jsonic)
//
function api_add () {
var self = this
var args = Common.parsePattern(self, arguments, 'action:f? actmeta:o?')
var raw_pattern = args.pattern
var action = args.action || function (msg, done) {
done.call(this, null, msg.default$ || null)
}
var actmeta = args.actmeta || {}
actmeta.raw = _.cloneDeep(raw_pattern)
// TODO: refactor plugin name, tag and fullname handling.
actmeta.plugin_name = actmeta.plugin_name || 'root$'
actmeta.plugin_fullname = actmeta.plugin_fullname ||
actmeta.plugin_name +
((actmeta.plugin_tag === '-' ? void 0 : actmeta.plugin_tag)
? '/' + actmeta.plugin_tag : '')
var add_callpoint = callpoint()
if (add_callpoint) {
actmeta.callpoint = add_callpoint
}
actmeta.sub = !!raw_pattern.sub$
actmeta.client = !!raw_pattern.client$
// Deprecate a pattern by providing a string message using deprecate$ key.
actmeta.deprecate = raw_pattern.deprecate$
var strict_add = (raw_pattern.strict$ && raw_pattern.strict$.add !== null)
? !!raw_pattern.strict$.add : !!so.strict.add
var internal_catchall = (raw_pattern.internal$ && raw_pattern.internal$.catchall !== null)
? !!raw_pattern.internal$.catchall : !!so.internal.catchall
var pattern = self.util.clean(raw_pattern)
if (!_.keys(pattern)) {
throw internals.error('add_empty_pattern', {args: Common.clean(args)})
}
var pattern_rules = _.clone(action.validate || {})
_.each(pattern, function (v, k) {
if (_.isObject(v)) {
pattern_rules[k] = _.clone(v)
delete pattern[k]
}
})
var addroute = true
// TODO: deprecate
actmeta.args = _.clone(pattern)
actmeta.rules = pattern_rules
actmeta.id = refnid()
actmeta.func = action
// Canonical string form of the action pattern.
actmeta.pattern = Common.pattern(pattern)
// Canonical object form of the action pattern.
actmeta.msgcanon = Jsonic(actmeta.pattern)
var priormeta = self.find(pattern)
if (priormeta) {
if (!internal_catchall && '' === priormeta.pattern) {
priormeta = null
}
// only exact action patterns are overridden
// use .wrap for pin-based patterns
else if (strict_add && priormeta.pattern !== actmeta.pattern) {
priormeta = null
}
}
if (priormeta) {
if (_.isFunction(priormeta.handle)) {
priormeta.handle(args.pattern, action)
addroute = false
}
else {
actmeta.priormeta = priormeta
}
actmeta.priorpath = priormeta.id + ';' + priormeta.priorpath
}
else {
actmeta.priorpath = ''
}
// FIX: need a much better way to support layered actions
// this ".handle" hack is just to make seneca.close work
if (action && actmeta && _.isFunction(action.handle)) {
actmeta.handle = action.handle
}
private$.stats.actmap[actmeta.pattern] =
private$.stats.actmap[actmeta.pattern] || make_action_stats(actmeta)
actmeta = modify_action(self, actmeta)
if (addroute) {
var addlog = [ actmeta.sub ? 'SUB' : 'ADD',
actmeta.id, Common.pattern(pattern), action.name,
callpoint() ]
var logger = self.log.log || self.log
logger.debug.apply(self, addlog)
private$.actrouter.add(pattern, actmeta)
}
return self
}
function make_action_stats (actmeta) {
return {
id: actmeta.id,
plugin: {
full: actmeta.plugin_fullname,
name: actmeta.plugin_name,
tag: actmeta.plugin_tag
},
prior: actmeta.priorpath,
calls: 0,
done: 0,
fails: 0,
time: {}
}
}
function modify_action (seneca, actmeta) {
_.each(private$.action_modifiers, function (actmod) {
actmeta = actmod.call(seneca, actmeta)
})
return actmeta
}
// TODO: deprecate
root.findpins = root.pinact = function () {
var pins = []
var patterns = _.flatten(arrayify(arguments))
_.each(patterns, function (pattern) {
pattern = _.isString(pattern) ? Jsonic(pattern) : pattern
pins = pins.concat(_.map(private$.actrouter.list(pattern),
function (desc) {
return desc.match
}
))
})
return pins
}
function api_act_if () {
var self = this
var args = Norma('{execute:b actargs:.*}', arguments)
if (args.execute) {
return self.act.apply(self, args.actargs)
}
else return self
}
// Perform an action. The properties of the first argument are matched against
// known patterns, and the most specific one wins.
function api_act () {
var self = this
var spec = Common.parsePattern(self, arrayify(arguments), 'done:f?')
var args = spec.pattern
var actdone = spec.done
args = _.extend(args, self.fixedargs)
if (so.debug.act_caller) {
args.caller$ = '\n Action call arguments and location: ' +
(new Error(Util.inspect(args).replace(/\n/g, '')).stack)
.replace(/.*\/seneca\.js:.*\n/g, '')
.replace(/.*\/seneca\/lib\/.*\.js:.*\n/g, '')
}
do_act(self, null, null, args, actdone)
return self
}
function api_wrap (pin, meta, wrapper) {
var pinthis = this
wrapper = _.isFunction(meta) ? meta : wrapper
meta = _.isFunction(meta) ? {} : meta
pin = _.isArray(pin) ? pin : [pin]
_.each(pin, function (p) {
_.each(pinthis.findpins(p), function (actpattern) {
pinthis.add(actpattern, meta, wrapper)
})
})
}
var handleClose = function () {
root.close(function (err) {
if (err) {
Common.console_error(err)
}
process.exit(err ? (err.exit === null ? 1 : err.exit) : 0)
})
}
// close seneca instance
// sets public seneca.closed property
function api_close (done) {
var seneca = this
seneca.ready(do_close)
function do_close () {
seneca.closed = true
// cleanup process event listeners
_.each(so.internal.close_signals, function (active, signal) {
if (active) {
process.removeListener(signal, handleClose)
}
})
seneca.log.debug('close', 'start', callpoint())
seneca.act('role:seneca,cmd:close,closing$:true', function (err) {
seneca.log.debug('close', 'end', err)
seneca.removeAllListeners('act-in')
seneca.removeAllListeners('act-out')
seneca.removeAllListeners('act-err')
seneca.removeAllListeners('pin')
seneca.removeAllListeners('after-pin')
seneca.removeAllListeners('ready')
if (_.isFunction(done)) {
return done.call(seneca, err)
}
})
}
}
// useful when defining services!
// note: has EventEmitter.once semantics
// if using .on('ready',fn) it will be be called for each ready event
function api_ready (ready) {
var self = this
if (so.debug.callpoint) {
self.log.debug('ready', 'register', callpoint())
}
if (!_.isFunction(ready)) {
// TODO: throw error
return
}
if (self.private$.executor.clear()) {
do_ready()
}
else {
self.private$.executor.once('clear', do_ready)
}
function do_ready () {
private$._isReady = true
root.emit('pin')
root.emit('after-pin')
try {
ready.call(self)
}
catch (ex) {
var re = ex
if (!re.seneca) {
re = internals.error(re, 'ready_failed',
{ message: ex.message, ready: ready })
}
self.die(re)
}
}
return self
}
// use('pluginname') - built-in, or provide calling code 'require' as seneca opt
// use(require('pluginname')) - plugin object, init will be called
// if first arg has property senecaplugin
function api_use (arg0, arg1, arg2) {
var self = this
var plugindesc
// Allow chaining with seneca.use('options', {...})
// see https://github.com/rjrodger/seneca/issues/80
if (arg0 === 'options') {
self.options(arg1)
return self
}
try {
plugindesc = private$.use(arg0, arg1, arg2)
}
catch (e) {
self.die(internals.error(e, 'plugin_' + e.code))
return self
}
self.register(plugindesc)
return self
}
// TODO: move repl functionality to seneca-repl
root.inrepl = function () {
var self = this
self.on('act-out', function () {
Logging.handlers.print.apply(null, arrayify(arguments))
})
self.on('error', function () {
var args = arrayify(arguments)
args.unshift('ERROR: ')
Logging.handlers.print.apply(null, args)
})
}
// Return self. Mostly useful as a check that this is a Seneca instance.
function api_seneca () {
return this
}
// Describe this instance using the form: Seneca/VERSION/ID
function api_toString () {
return this.name
}
function do_act (instance, actmeta, prior_ctxt, origargs, actdone) {
var delegate = instance
var args = _.clone(origargs)
var callargs = args
var actstats
var act_callpoint = callpoint()
var is_sync = _.isFunction(actdone)
var listen_origin = origargs.transport$ && origargs.transport$.origin
var id_tx = (args.id$ || args.actid$ || instance.idgen()).split('/')
var tx =
id_tx[1] ||
origargs.tx$ ||
instance.fixedargs.tx$ ||
instance.idgen()
var actid = (id_tx[0] || instance.idgen()) + '/' + tx
var actstart = Date.now()
args.default$ = args.default$ || (!so.strict.find ? {} : args.default$)
prior_ctxt = prior_ctxt || { chain: [], entry: true, depth: 1 }
actdone = actdone || _.noop
// if previously seen message, provide previous result, and don't process again
if (apply_actcache(instance, args, prior_ctxt, actdone, act_callpoint)) {
return
}
var execute_action = function execute_action (action_done) {
var err
actmeta = actmeta || delegate.find(args, {catchall: so.internal.catchall})
if (actmeta) {
if (_.isArray(args.history$) && 0 < args.history$.length) {
var repeat_count = 0
for (var hI = 0; hI < args.history$.length; ++hI) {
if (actmeta.id === args.history$[hI].action) {
++repeat_count
}
}
if (so.strict.maxloop < repeat_count) {
err = internals.error('act_loop', {
pattern: actmeta.pattern,
actmeta: actmeta,
history: args.history$
})
return action_done(err)
}
}
}
// action pattern not found
else {
if (_.isPlainObject(args.default$) || _.isArray(args.default$)) {
delegate.log.debug('act', '-', '-', 'DEFAULT',
delegate.util.clean(args), callpoint())
return action_done(null, args.default$)
}
var errcode = 'act_not_found'
var errinfo = { args: Util.inspect(Common.clean(args)).replace(/\n/g, '') }
if (!_.isUndefined(args.default$)) {
errcode = 'act_default_bad'
errinfo.xdefault = Util.inspect(args.default$)
}
err = internals.error(errcode, errinfo)
// TODO: wrong approach - should always call action_done to complete
// error would then include a fatal flag
if (args.fatal$) {
return delegate.die(err)
}
Logging.log_act_bad(root, err, so.trace.unknown)
return action_done(err)
}
validate_action_message(args, actmeta, function (err) {
if (err) {
return action_done(err)
}
actstats = act_stats_call(actmeta.pattern)
// build callargs
// remove actid so that user manipulation of args for subsequent use does
// not cause inadvertent hit on existing action
delete callargs.id$
delete callargs.actid$ // legacy alias
callargs.meta$ = {
id: actid,
tx: tx,
start: actstart,
pattern: actmeta.pattern,
action: actmeta.id,
entry: prior_ctxt.entry,
chain: prior_ctxt.chain,
sync: is_sync
}
if (actmeta.deprecate) {
instance.log.warn('DEPRECATED', actmeta.pattern, actmeta.deprecate,
act_callpoint)
}
Logging.log_act_in(root, { actid: actid, info: origargs.transport$ },
actmeta, callargs, prior_ctxt, act_callpoint, so.bloomboard)
instance.emit('act-in', callargs)
delegate = act_make_delegate(instance, tx, callargs, actmeta, prior_ctxt)
callargs = _.extend({}, callargs, delegate.fixedargs, {tx$: tx})
action_done.seneca = delegate
if (root.closed && !callargs.closing$) {
return action_done(
internals.error('instance-closed',
{args: Common.clean(callargs)}))
}
delegate.good = function (out) {
action_done(null, out)
}
delegate.bad = function (err) {
action_done(err)
}
if (_.isFunction(delegate.on_act_in)) {
delegate.on_act_in(actmeta, callargs)
}
actmeta.func.call(delegate, callargs, action_done)
})
}
var act_done = function act_done (err) {
try {
var actend = Date.now()
prior_ctxt.depth--
prior_ctxt.entry = prior_ctxt.depth <= 0
if (prior_ctxt.entry === true && actmeta) {
private$.timestats.point(actend - actstart, actmeta.pattern)
}
var result = arrayify(arguments)
var call_cb = true
var resdata = result[1]
var info = result[2]
if (err == null &&
resdata != null &&
!(_.isPlainObject(resdata) ||
_.isArray(resdata) ||
!!resdata.entity$ ||
!!resdata.force$
) &&
so.strict.result) {
// allow legacy patterns
if (!(callargs.cmd === 'generate_id' ||
callargs.note === true ||
callargs.cmd === 'native' ||
callargs.cmd === 'quickcode'
)) {
err = internals.error(
'result_not_objarr', {
pattern: actmeta.pattern,
args: Util.inspect(Common.clean(callargs)).replace(/\n/g, ''),
result: resdata
})
}
}
private$.actcache.set(actid, {
result: result,
actmeta: actmeta,
when: Date.now()
})
if (err) {
// TODO: is act_not_found an error for purposes of stats? probably not
private$.stats.act.fails++
if (actstats) {
actstats.fails++
}
var out = act_error(instance, err, actmeta, result, actdone,
actend - actstart, callargs, prior_ctxt, act_callpoint)
if (args.fatal$) {
return instance.die(out.err)
}
call_cb = out.call_cb
result[0] = out.err
if (delegate && _.isFunction(delegate.on_act_err)) {
delegate.on_act_err(actmeta, result[0])
}
}
else {
instance.emit('act-out', callargs, result[1])
result[0] = null
Logging.log_act_out(
root, {
actid: actid,
duration: actend - actstart,
info: info,
listen: listen_origin
},
actmeta, callargs, result, prior_ctxt, act_callpoint, so.bloomboard)
if (_.isFunction(delegate.on_act_out)) {
delegate.on_act_out(actmeta, result[1])
}
if (actstats) {
private$.stats.act.done++
actstats.done++
}
}
try {
if (call_cb) {
actdone.apply(delegate, result) // note: err == result[0]
}
}
// for exceptions thrown inside the callback
catch (ex) {
var formattedErr = ex
// handle throws of non-Error values
if (!Util.isError(ex)) {
formattedErr = _.isObject(ex)
? new Error(Jsonic.stringify(ex))
: new Error('' + ex)
}
callback_error(instance, formattedErr, actmeta, result, actdone,
actend - actstart, callargs, prior_ctxt, act_callpoint)
}
}
catch (ex) {
instance.emit('error', ex)
}
}
var execspec = {
id: actid,
gate: prior_ctxt.entry && !!callargs.gate$,
ungate: !!callargs.ungate$,
desc: act_callpoint,
cb: act_done,
fn: execute_action
}
if (typeof args.timeout$ === 'number') {
execspec.timeout = args.timeout$
}
private$.executor.execute(execspec)
}
function act_error (instance, err, actmeta, result, cb,
duration, callargs, prior_ctxt, act_callpoint) {
var call_cb = true
actmeta = actmeta || {}
if (!err.seneca) {
err = internals.error(err, 'act_execute', _.extend(
{},
err.details,
{
message: (err.eraro && err.orig) ? err.orig.message : err.message,
pattern: actmeta.pattern,
fn: actmeta.func,
cb: cb,
instance: instance.toString()
}))
result[0] = err
}
// Special legacy case for seneca-perm
else if (err.orig &&
_.isString(err.orig.code) &&
err.orig.code.indexOf('perm/') === 0) {
err = err.orig
result[0] = err
}
err.details = err.details || {}
err.details.plugin = err.details.plugin || {}
Logging.log_act_err(root, {
actid: callargs.id$ || callargs.actid$,
duration: duration
}, actmeta, callargs, prior_ctxt, err, act_callpoint, so.bloomboard)
instance.emit('act-err', callargs, err)
// when fatal$ is set, prefer to die instead
if (so.errhandler && (!callargs || !callargs.fatal$)) {
call_cb = !so.errhandler.call(instance, err)
}
return {
call_cb: call_cb,
err: err
}
}
function callback_error (instance, err, actmeta, result, cb,
duration, callargs, prior_ctxt, act_callpoint) {
actmeta = actmeta || {}
if (!err.seneca) {
err = internals.error(err, 'act_callback', _.extend(
{},
err.details,
{
message: err.message,
pattern: actmeta.pattern,
fn: actmeta.func,
cb: cb,
instance: instance.toString()
}))
result[0] = err
}
err.details = err.details || {}
err.details.plugin = err.details.plugin || {}
Logging.log_act_err(root, {
actid: callargs.id$ || callargs.actid$,
duration: duration
}, actmeta, callargs, prior_ctxt, err, act_callpoint, so.bloomboard)
instance.emit('act-err', callargs, err, result[1])
if (so.errhandler) {
so.errhandler.call(instance, err)
}
}
// Check if actid has already been seen, and if action cache is active,
// then provide cached result, if any. Return true in this case.
function apply_actcache (instance, args, prior_ctxt, actcb, act_callpoint) {
var actid = args.id$ || args.actid$
if (actid != null && so.actcache.active) {
var actdetails = private$.actcache.get(actid)
if (actdetails) {
var actmeta = actdetails.actmeta || {}
private$.stats.act.cache++
Logging.log_act_cache(root, {actid: actid}, actmeta,
args, prior_ctxt, act_callpoint)
if (actcb) {
setImmediate(function () {
actcb.apply(instance, actdetails.result)
})
}
return actmeta
}
}
return false
}
// Resolve action stats object, creating if ncessary, and count a call.
//
// * _pattern_ (string) → action pattern
function act_stats_call (pattern) {
var actstats = (private$.stats.actmap[pattern] =
private$.stats.actmap[pattern] || {})
private$.stats.act.calls++
actstats.calls++
return actstats
}
function act_make_delegate (instance, tx, callargs, actmeta, prior_ctxt) {
var delegate_args = {}
if (callargs.gate$ != null) {
delegate_args.ungate$ = !!callargs.gate$
}
var history_entry = _.clone(callargs.meta$)
history_entry.instance = instance.id
var delegate = instance.delegate(delegate_args)
// special overrides
if (tx) { delegate.fixedargs.tx$ = tx }
// delegate.fixedargs.history$ = _.clone(callargs.history$ || [])
// delegate.fixedargs.history$.push(history_entry)
// automate actid log insertion
delegate.log = Logging.make_delegate_log(callargs.meta$.id, actmeta, instance)
Logging.makelogfuncs(delegate)
if (actmeta.priormeta) {
delegate.prior = function (prior_args, prior_cb) {
prior_args = _.clone(prior_args)
var sub_prior_ctxt = _.clone(prior_ctxt)
sub_prior_ctxt.chain = _.clone(prior_ctxt.chain)
sub_prior_ctxt.chain.push(actmeta.id)
sub_prior_ctxt.entry = false
sub_prior_ctxt.depth++
delete prior_args.id$
delete prior_args.actid$
delete prior_args.meta$
delete prior_args.transport$
if (callargs.default$) {
prior_args.default$ = callargs.default$
}
prior_args.tx$ = tx
do_act(delegate, actmeta.priormeta, sub_prior_ctxt, prior_args, prior_cb)
}
delegate.parent = function (prior_args, prior_cb) {
delegate.log.warn('The method name seneca.parent is deprecated.' +
' Please use seneca.prior instead.')
delegate.prior(prior_args, prior_cb)
}
}
else {
delegate.prior = function (msg, done) {
var out = callargs.default$ ? callargs.default$ : null
return done.call(delegate, null, out)
}
}
return delegate
}
// Validate action message contents, if validator function defined.
//
// * _msg_ (object) → action arguments
// * _actmeta_ (object) → action meta data
// * _done_ (function) → callback function
function validate_action_message () {
var args = Norma('msg:o actmeta:o done:f', arguments)
if (!_.isFunction(args.actmeta.validate)) {
return args.done()
}
args.actmeta.validate(args.msg, function (err) {
if (!err) {
return args.done()
}
return args.done(
internals.error(
so.legacy.error_codes ? 'act_invalid_args' : 'act_invalid_msg',
{
pattern: args.actmeta.pattern,
message: err.message,
msg: Common.clean(args.msg)
})
)
})
}
function api_fix () {
var self = this
var defargs = Common.parsePattern(self, arguments)
var fix = self.delegate(defargs.pattern)
fix.add = function () {
var args = Common.parsePattern(fix, arguments, 'rest:.*', defargs.pattern)
var addargs = [args.pattern].concat(args.rest)
return self.add.apply(fix, addargs)
}
return fix
}
function api_delegate (fixedargs) {
var self = this
var delegate = Object.create(self)
delegate.did = refnid()
var strdesc
delegate.toString = function () {
if (strdesc) return strdesc
var vfa = {}
_.each(fixedargs, function (v, k) {
if (~k.indexOf('$')) return
vfa[k] = v
})
strdesc = self.toString() +
(_.keys(vfa).length ? '/' + Jsonic.stringify(vfa) : '')
return strdesc
}
delegate.fixedargs = (so.strict.fixedargs
? _.extend({}, fixedargs, self.fixedargs)
: _.extend({}, self.fixedargs, fixedargs))
delegate.delegate = function (further_fixedargs) {
var args = _.extend({}, delegate.fixedargs, further_fixedargs || {})
return self.delegate.call(this, args)
}
// Somewhere to put contextual data for this delegate.
// For example, data for individual web requests.
delegate.context = {}
delegate.client = function () {
return self.client.apply(this, arguments)
}
delegate.listen = function () {
return self.listen.apply(this, arguments)
}
delegate.makelogfuncs = function () {
Logging.makelogfuncs(delegate)
}
return delegate
}
function api_options (options, mark) {
var self = this
if (options != null) {
self.log.debug('options', 'set', options, callpoint())
}
so = private$.exports.options = ((options == null)
? private$.optioner.get()
: private$.optioner.set(options))
if (options && options.log) {
self.log = Logging.makelog(so.log, self.id, self.start_time)
}
return so
}
function api_start (errhandler) {
var sd = this.delegate()
var options = sd.options()
options.zig = options.zig || {}
function make_fn (self, origargs) {
var args = Common.parsePattern(self, origargs, 'fn:f?')
var actargs = _.extend(
{},
args.moreobjargs ? args.moreobjargs : {},
args.objargs ? args.objargs : {},
args.strargs ? Jsonic(args.strargs) : {}
)
var fn
if (args.fn) {
fn = function (data, done) {
return args.fn.call(self, data, done)
}
}
else {
fn = function (data, done) {
if (args.strargs) {
/*eslint-disable */
var $ = data
/*eslint-enable */
_.each(actargs, function (v, k) {
if (_.isString(v) && v.indexOf('$.') === 0) {
/*eslint-disable */
actargs[k] = eval(v)
/*eslint-enable */
}
})
}
self.act(actargs, done)
return true
}
fn.nm = args.strargs
}
return fn
}
var dzig = Zig({
timeout: options.zig.timeout || options.timeout,
trace: options.zig.trace
})
dzig.start(function () {
var self = this
dzig.end(function () {
if (errhandler) errhandler.apply(self, arguments)
})
})
sd.end = function (cb) {
var self = this
dzig.end(function () {
if (cb) return cb.apply(self, arguments)
if (errhandler) return errhandler.apply(self, arguments)
})
return self
}
sd.wait = function () {
dzig.wait(make_fn(this, arguments))
return this
}
sd.step = function () {
dzig.step(make_fn(this, arguments))
return this
}
sd.run = function () {
dzig.run(make_fn(this, arguments))
return this
}
sd.if = function (cond) {
dzig.if(cond)
return this
}
sd.endif = function () {
dzig.endif()
return this
}
sd.fire = function () {
dzig.step(make_fn(this, arguments))
return this
}
return sd
}
function api_error (errhandler) {
this.options({ errhandler: errhandler })
return this
}
// Inspired by https://github.com/hapijs/hapi/blob/master/lib/plugin.js decorate
function api_decorate (property, method) {
Assert(property, 'property must be specified')
Assert(typeof property === 'string', 'property must be a string')
Assert(property[0] !== '_', 'property cannot start with _')
Assert(root._decorations[property] === undefined, 'seneca is already decorated with the property')
Assert(root[property] === undefined, 'cannot override a core seneca property: ' + property)
root._decorations[property] = method
root[property] = method
}
// DEPRECATED
// for use with async
root.next_act = function () {
var si = this || root
var args = arrayify(arguments)
return function (next) {
args.push(next)
si.act.apply(si, args)
}
}
root.gate = function () {
var gated = this.delegate({gate$: true})
return gated
}
root.ungate = function () {
var ungated = this.delegate({gate$: false})
return ungated
}
// Add builtin actions.
root.add({role: 'seneca', cmd: 'stats'}, action_seneca_stats)
root.add({role: 'seneca', cmd: 'close'}, action_seneca_close)
root.add({role: 'seneca', info: 'fatal'}, action_seneca_fatal)
root.add({role: 'seneca', get: 'options'}, action_options_get)
// Legacy builtin actions.
root.add({role: 'seneca', stats: true}, action_seneca_stats)
root.add({role: 'options', cmd: 'get'}, action_options_get)
Print(root)
// Define builtin actions.
function action_seneca_fatal (args, done) {
done()
}
function action_seneca_close (args, done) {
this.emit('close')
done()
}
function action_seneca_stats (args, done) {
args = args || {}
var stats
if (args.pattern && private$.stats.actmap[args.pattern]) {
stats = private$.stats.actmap[args.pattern]
stats.time = private$.timestats.calculate(args.pattern)
}
else {
stats = _.clone(private$.stats)
stats.now = new Date()
stats.uptime = stats.now - stats.start
stats.now = new Date(stats.now).toISOString()
stats.start = new Date(stats.start).toISOString()
var summary =
(args.summary == null) ||
(/^false$/i.exec(args.summary) ? false : !!(args.summary))
if (summary) {
stats.actmap = void 0
}
else {
_.each(private$.stats.actmap, function (a, p) {
private$.stats.actmap[p].time = private$.timestats.calculate(p)
})
}
}
if (done) {
done(null, stats)
}
return stats
}
root.stats = action_seneca_stats
function action_options_get (args, done) {
var options = private$.optioner.get()
var base = args.base || null
var root = base ? (options[base] || {}) : options
var val = args.key ? root[args.key] : root
done(null, Common.copydata(val))
}
_.each(so.internal.close_signals, function (active, signal) {
if (active) {
process.once(signal, handleClose)
}
})
return root
}
// Utilities
function make_trace_act (opts) {
return function () {
var args = Array.prototype.slice.call(arguments, 0)
args.unshift(new Date().toISOString())
if (opts.stack) {
args.push(new Error('trace...').stack)
}
console.log(args.join('\t'))
}
}
// Declarations
// Private member variables of Seneca object.
function make_private () {
return {
stats: {
start: Date.now(),
act: {
calls: 0,
done: 0,
fails: 0,
cache: 0
},
actmap: {}
}
}
}
// Callpoint resolver. Indicates location in calling code.
function make_callpoint (active) {
if (active) {
return function () {
return internals.error.callpoint(
new Error(),
['/seneca/seneca.js', '/seneca/lib/', '/lodash.js'])
}
}
return _.noop
}
|
var ScreenShotReporter = require('protractor-jasmine2-screenshot-reporter');
var path = require('path');
exports.config = {
specs: [
'./bs3-320x480.spec.js'
],
capabilities: {
browserName: 'firefox'
},
directConnect: true,
baseUrl: 'http://0.0.0.0:9000',
framework: 'jasmine2',
onPrepare: function() {
// Disable animations so e2e tests run more quickly
var disableNgAnimate = function() {
angular.module('disableNgAnimate', []).run(['$animate', function($animate) {
$animate.enabled(false);
}]);
};
browser.addMockModule('disableNgAnimate', disableNgAnimate);
// Add a screenshot reporter and store screenshots
jasmine.getEnv().addReporter(new ScreenShotReporter({
dest:'test/screen_tests/screenshots/bs3-firefox-320x480',
pathBuilder: function(currentSpec, suites, browserCapabilities) {
return currentSpec.description;
}
}));
}
};
|
scriptr.Tabs = function(jq2) {
var visibleDiv = "hierarchyEditor"
var $
var selector = function(n) {return "#"+n}
var onclick = function(event) {
var divName = 'tab-content-'+event.target.replace(".", "\\.")
if (visibleDiv!=event.target) {
$("#"+visibleDiv).hide()
if (event.target=='hierarchy') {
$('#hierarchyEditor').show()
visibleDiv = 'hierarchyEditor'
} else {
if ($(selector(divName)).length==0) {
} else {
$(selector(divName)).show()
}
visibleDiv = divName
}
}
}
var _init = function(jq2) {
$ = jq2
$('#tabs').w2tabs({
name: 'tabs',
active: 'hierarchy',
tabs: [
{ id: 'hierarchy', caption: 'Models' }
],
onClick: function(event) {
console.log('object '+ event.target )
},
onClose: function(event) {
console.log('object '+ event.target + ' is destroyed')
$('#tab-content-'+event.target.replace(".", "\\.")).remove()
w2ui.tabs.click('hierarchy')
}
})
}
_init(jq2)
return {
openTab: function(name, path) {
var divName = 'tab-content-'+name
var url = "https://www.scriptr.io/workspace?menu=0&tree=0&toolbar=1&console=0&name="+path
w2ui.tabs.add({id: name, caption: name, closable: true})
var d = $("<div></div>").appendTo("#tab-content")
d.attr("id", divName)
d.hide()
// TODO: disable tabs until content loads
var ifr=$('<iframe/>', {
src: url, //"https://scriptr.io",
frameborder: 0,
marginheight: 0,
marginwidth: 0,
width: "100%",
height: "100%",
scrolling: "no",
load: function(){
// TODO: re-enable tabs
console.log('loaded')
}
})
$('#tabs_tabs_tab_'+name.replace(".","\\.")+" .w2ui-tab").addClass("selectedTab")
d.append(ifr);
w2ui.tabs.click(name)
}
}
}
|
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
const bundleOutputDir = './wwwroot/dist';
module.exports = (env) => {
const isDevBuild = !(env && env.prod);
const bundleOutputDir = './wwwroot/dist';
return [{
stats: { modules: false },
context: __dirname,
resolve: { extensions: [ '.js', '.ts' ] },
entry: { 'main': './ClientApp/boot.ts' },
module: {
rules: [
{ test: /\.vue\.html$/, include: /ClientApp/, loader: 'vue-loader', options: { loaders: { js: 'awesome-typescript-loader?silent=true' } } },
{ test: /\.ts$/, include: /ClientApp/, use: 'awesome-typescript-loader?silent=true' },
{ test: /\.css$/, use: isDevBuild ? ['style-loader', 'css-loader'] : ExtractTextPlugin.extract({ use: 'css-loader' }) },
{ test: /\.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000' }
]
},
output: {
path: path.join(__dirname, bundleOutputDir),
filename: '[name].js',
publicPath: '/dist/'
},
plugins: [
new CheckerPlugin(),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(isDevBuild ? 'development' : 'production')
}
})
//,
//new webpack.DllReferencePlugin({
// context: __dirname,
// manifest: require('./wwwroot/dist/vendor-manifest.json')
//})
].concat(isDevBuild ? [
// Plugins that apply in development builds only
new webpack.SourceMapDevToolPlugin({
filename: '[file].map', // Remove this line if you prefer inline source maps
moduleFilenameTemplate: path.relative(bundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
})
] : [
// Plugins that apply in production builds only
new webpack.optimize.UglifyJsPlugin()
])
}];
};
|
module.exports = (commandKeys, execCommand) => {
return {
label: 'View',
submenu: [
{
label: 'Reload',
accelerator: commandKeys['window:reload'],
click(item, focusedWindow) {
execCommand('window:reload', focusedWindow);
}
},
{
label: 'Full Reload',
accelerator: commandKeys['window:reloadFull'],
click(item, focusedWindow) {
execCommand('window:reloadFull', focusedWindow);
}
},
{
label: 'Developer Tools',
accelerator: commandKeys['window:devtools'],
click: (item, focusedWindow) => {
execCommand('window:reloadFull', focusedWindow);
}
},
{
type: 'separator'
},
{
label: 'Reset Zoom Level',
accelerator: commandKeys['zoom:reset'],
click(item, focusedWindow) {
execCommand('zoom:reset', focusedWindow);
}
},
{
label: 'Zoom In',
accelerator: commandKeys['zoom:in'],
click(item, focusedWindow) {
execCommand('zoom:in', focusedWindow);
}
},
{
label: 'Zoom Out',
accelerator: commandKeys['zoom:out'],
click(item, focusedWindow) {
execCommand('zoom:out', focusedWindow);
}
}
]
};
};
|
'use strict';
import styles from './styles/main.scss';
import React from 'react';
import ReactDOM from 'react-dom';
import { HashRouter, Switch, Route, Link } from 'react-router-dom';
import Home from './components/home/Home';
const App = () => (
<HashRouter hashType="noslash">
<div>
<Switch>
<Route exact path='/' component={Home} />
</Switch>
</div>
</HashRouter>
);
ReactDOM.render(<App/>, document.getElementById('root')); |
/*
* assemble-bootstrap
* http://github.com/assemble/assemble-bootstrap
*
* Copyright (c) 2013 Jon Schlinkert
* MIT License
*/
"use strict";
module.exports = function(grunt) {
var pretty = require('pretty');
var vendor = grunt.file.readJSON('.bowerrc').directory;
if(!grunt.file.exists(vendor + '/bootstrap/_config.yml')) {
grunt.fail.fatal('>> Please run "bower install" before continuing.');
}
// Project configuration.
grunt.initConfig({
// Project metadata
pkg : grunt.file.readJSON('package.json'),
site : grunt.file.readYAML('_config.yml'),
vendor: vendor,
// Convenience
bootstrap: '<%= vendor %>/bootstrap',
// Run Bootstrap's own Gruntfile.
subgrunt: {
test: {
options: {task: 'test'},
src: ['<%= bootstrap %>']
},
js: {
options: {task: 'concat'},
src: ['<%= bootstrap %>']
},
css: {
options: {task: 'less'},
src: ['<%= bootstrap %>']
},
dist: {
options: {task: 'dist'},
src: ['<%= bootstrap %>']
},
all: {
options: {task: 'default'},
src: ['<%= bootstrap %>']
}
},
// Regex for refactor task.
replacements: require('./tasks/replacements'),
// Refactor Liquid to Handlebars so we can
// build with Assemble instead of Jekyll
frep: {
bootstrap: {
options: {
replacements: '<%= replacements.bootstrap %>'
},
files: [
{expand: true, cwd: '<%= bootstrap %>', src: ['*.html', '_layouts/*.html', '_includes/*.html'], dest: 'templates/', ext: '.hbs'}
]
},
examples: {
options: {
replacements: '<%= replacements.examples %>'
},
files: [
{expand: true, filter: 'isFile', cwd: '<%= bootstrap %>/examples', src: ['{*,**}/*.html'], dest: '<%= site.dest %>/examples/'}
]
}
},
/**
* gunt-contrib-watch
*/
watch: {
assemble: {
files: ['templates/**/*.{md,hbs,json,yml}'],
tasks: [
'assemble:site'
]
},
js: {
files: [
'Gruntfile.js',
'js/**/*.js',
'!js/main.js'
],
tasks: [
'requirejs:single',
],
options: {
livereload: true,
},
},
less: {
files: [
'theme/**/*.less'
],
tasks: [
'less',
],
options: {
livereload: true,
},
},
livereload: {
// Here we watch the files the sass task will compile to
// These files are sent to the live reload server after sass compiles to them
files: [
'_site/assets/site.css',
'_site/assets/bootstrap.css',
],
options: {
livereload: true
}
},
},
assemble: {
options: {
flatten: true,
assets: '<%= site.assets %>',
data: '<%= site.data %>/*.{json,yml}',
// Metadata
site: '<%= site %>',
// Templates
partials: '<%= site.includes %>',
layoutdir: '<%= site.layouts %>',
layout: '<%= site.layout %>',
},
site: {
src: ['templates/*.hbs'],
dest: '<%= site.dest %>/'
}
},
// Compile LESS to CSS
less: {
options: {
paths: [
'<%= site.theme %>',
'<%= site.theme %>/bootstrap',
'<%= site.theme %>/components',
'<%= site.theme %>/utils'
],
},
site: {
src: ['<%= site.theme %>/site.less'],
dest: '<%= site.assets %>/css/site.css'
}
},
/**
* grunt-contrib-requirejs
*/
requirejs: {
/* Official example build file: https://github.com/jrburke/r.js/blob/master/build/example.build.js */
/* Will build 1 single file */
single: {
options: {
baseUrl: 'js/src',
mainConfigFile: 'js/src/config.js',
paths: {
jquery: 'lib/amd-globals/jquery'
},
name: '../lib/require/almond',
include: ['init'],
insertRequire: ['init'],
out: '_site/assets/js/main.js',
generateSourceMaps: false,
wrap: true,
optimize: 'none'
}
}
},
copy: {
vendor: {
files: {
'<%= site.assets %>/js/highlight.js': ['<%= vendor %>/highlightjs/highlight.pack.js'],
'<%= site.assets %>/css/github.css': ['<%= vendor %>/highlightjs/styles/github.css']
}
},
assets: {
files: [
{expand: true, cwd: '<%= bootstrap %>/examples', src: ['**/*.css', '**/*.{jpg,png,gif}'], dest: '<%= site.dest %>/examples/'},
{expand: true, cwd: '<%= bootstrap %>/docs-assets', src: ['**'], dest: '<%= site.assets %>/'},
{expand: true, cwd: '<%= bootstrap %>/_data', src: ['**'], dest: '<%= site.data %>/'},
{expand: true, cwd: '<%= bootstrap %>/dist', src: ['**'], dest: '<%= site.assets %>/'},
]
},
update: {
files: [
{expand: true, cwd: '<%= site.theme %>/img', src: ['**/*.{jpg,png,gif}'], dest: '<%= site.assets %>/img/'},
{expand: true, cwd: '<%= bootstrap %>/less/mixins', src: ['*'], dest: '<%= site.theme %>/mixins/'},
{expand: true, cwd: '<%= bootstrap %>/less', src: ['*', '!{var*,mix*,util*}'], dest: '<%= site.theme %>/bootstrap/'},
{expand: true, cwd: '<%= bootstrap %>/less', src: ['{util*,mix*}.less'], dest: '<%= site.theme %>/utils'},
{expand: true, cwd: '<%= bootstrap %>/less', src: ['variables.less'], dest: '<%= site.theme %>/'},
]
}
},
clean: {
dist: ['<%= site.dest %>/**/*', '!<%= site.dest %>/.{git,gitignore}'],
update: ['<%= site.theme %>/bootstrap/{var*,mix*,util*}.less']
}
});
grunt.config.set('site.description', 'Generated by http://assemble.io');
// These plugins provide necessary tasks.
grunt.loadNpmTasks('assemble');
grunt.loadNpmTasks('assemble-less');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-frep');
grunt.loadNpmTasks('grunt-sync-pkg');
grunt.loadNpmTasks('grunt-verb');
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-watch');
// Load local "Subgrunt" task to run Bootstrap's Gruntfile.
grunt.loadTasks('tasks');
// Tests task.
grunt.registerTask('test', ['subgrunt:test']);
grunt.registerTask('live', [
'watch'
]);
grunt.registerTask('dev', ['clean', 'frep', 'assemble']);
grunt.registerTask('update', ['copy:update', 'clean:update']);
// Default task to be run with the "grunt" command.
grunt.registerTask('default', [
'clean',
'subgrunt:js',
'subgrunt:css',
'requirejs',
'copy',
'frep',
'assemble',
'less',
'sync'
]);
};
|
/**
* Hilo 1.1.10 for amd
* Copyright 2016 alibaba.com
* Licensed under the MIT License
*/
define("hilo/view/Drawable",["hilo/core/Class","hilo/util/util"],function(i,t){var r=i.create({constructor:function(i){this.init(i)},image:null,rect:null,init:function(i){var e=this,n=e.image;r.isDrawable(i)?e.image=i:t.copy(e,i,!0);var a=e.image;if("string"==typeof a){if(!n||a!==n.getAttribute("src")){e.image=null;var o=new Image;return i.crossOrigin&&(o.crossOrigin=i.crossOrigin),o.onload=function(){o.onload=null,e.init(o)},void(o.src=a)}a=e.image=n}a&&!e.rect&&(e.rect=[0,0,a.width,a.height])},Statics:{isDrawable:function(i){if(!i||!i.tagName)return!1;var t=i.tagName.toLowerCase();return"img"===t||"canvas"===t||"video"===t}}});return r}); |
import React, { Component } from 'react';
import OrganismPlaySurface from '../organisms/Organism.playSurface';
import OrganismPlayerHand from '../organisms/Organism.playerHand';
import cardJSON from '../../cardData';
export default class BoardTable extends Component {
constructor(props) {
super();
console.log(props);
this.state = {
gameCards: cardJSON,
playerDeck: [],
playerHand: [],
actions: 0,
buys: 0,
treasure: 0
};
}
componentWillMount(){
//this.setupPlayerHandPromise();
let initialCards = this.setupPlayerHand();
let shuffledCards = this.shuffleHand(initialCards);
let drawnHand = this.drawHand(shuffledCards);
this.calculateHand(drawnHand);
this.setState({playerDeck: shuffledCards, playerHand: drawnHand, });
}
// Set up starting hand for player, of 4 coppers and 3 estates
setupPlayerHand(){
let initialPlayerHand = [];
for(let i = 0; i <= 3; i++){
initialPlayerHand.push(this.state.gameCards.money[0]);
//console.log(initialPlayerHand);
}
for(let i = 0; i <= 2; i++){
initialPlayerHand.push(this.state.gameCards.victory[0]);
}
return initialPlayerHand;
}
shuffleHand(cards){
for (var i = cards.length - 1; i > 0; i--) {
var j = Math.floor(Math.random() * (i + 1));
var temp = cards[i];
cards[i] = cards[j];
cards[j] = temp;
}
return cards;
}
drawHand(cards){
let playerHand = cards.splice(0, 5);
return playerHand;
}
calculateHand(cards){
let actions = 0;
let buys = 0;
let treasure = 0;
cards.forEach(function(card,index){
actions += card.actions;
buys += card.buys;
treasure += card.worth;
});
this.setState({handWorth: {actions: actions, buys: buys, treasure: treasure} })
}
render() {
console.log(this.state);
return (
<div>
<OrganismPlaySurface cards={this.state.gameCards} handWorth={this.state.handWorth} />
<OrganismPlayerHand cards={this.state.playerHand} />
</div>
);
}
} |
const fs = require('fs-extra');
const path = require('path')
function prepareOutputFolder() {
if (fs.existsSync('test/output'))
fs.removeSync('test/output')
fs.mkdirsSync('test/output')
}
function getFile(name) {
return path.join(path.join(__dirname, 'fixture', name))
}
module.exports = {
prepareOutputFolder,
getFile
}
|
import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('options-panel', 'Integration | Component | options panel', {
integration: true
});
test('it renders', function(assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.on('myAction', function(val) { ... });
this.render(hbs`{{options-panel}}`);
assert.equal(this.$().text().trim(), '');
// Template block usage:
this.render(hbs`
{{#options-panel}}
template block text
{{/options-panel}}
`);
assert.equal(this.$().text().trim(), 'template block text');
});
|
import React, { Component } from 'react';
import { BrowserRouter as Router, Route } from 'react-router-dom';
import Home from './components/Home';
import Restaurantes from './components/Restaurantes';
import Sobre from './components/Sobre';
import Login from './components/Login';
import NovoRestaurante from './components/NovoRestaurante';
import CriarUsuario from './components/CriarUsuario';
class App extends Component {
render() {
return (
<Router>
<div>
<Route exact path="/" component={ Home } />
<Route exact path="/restaurantes" component={ Restaurantes } />
<Route exact path="/sobre" component={ Sobre } />
<Route exact path="/login" component={ Login } />
<Route exact path="/add-restaurante" component={ NovoRestaurante } />
<Route exact path="/add-usuario" component={ CriarUsuario } />
</div>
</Router>
);
}
}
export default App;
|
import _ from 'underscore';
import s from 'underscore.string';
const accountsConfig = {
forbidClientAccountCreation: true,
loginExpirationInDays: RocketChat.settings.get('Accounts_LoginExpiration'),
};
Accounts.config(accountsConfig);
Accounts.emailTemplates.siteName = RocketChat.settings.get('Site_Name');
Accounts.emailTemplates.from = `${ RocketChat.settings.get('Site_Name') } <${ RocketChat.settings.get('From_Email') }>`;
Accounts.emailTemplates.userToActivate = {
subject() {
const subject = TAPi18n.__('Accounts_Admin_Email_Approval_Needed_Subject_Default');
const siteName = RocketChat.settings.get('Site_Name');
return `[${ siteName }] ${ subject }`;
},
html(options = {}) {
const header = RocketChat.placeholders.replace(RocketChat.settings.get('Email_Header') || '');
const footer = RocketChat.placeholders.replace(RocketChat.settings.get('Email_Footer') || '');
const email = options.reason ? 'Accounts_Admin_Email_Approval_Needed_With_Reason_Default' : 'Accounts_Admin_Email_Approval_Needed_Default';
const html = RocketChat.placeholders.replace(TAPi18n.__(email), {
name: s.escapeHTML(options.name),
email: s.escapeHTML(options.email),
reason: s.escapeHTML(options.reason),
});
return header + html + footer;
},
};
Accounts.emailTemplates.userActivated = {
subject({ active, username }) {
const activated = username ? 'Activated' : 'Approved';
const action = active ? activated : 'Deactivated';
const subject = `Accounts_Email_${ action }_Subject`;
const siteName = RocketChat.settings.get('Site_Name');
return `[${ siteName }] ${ TAPi18n.__(subject) }`;
},
html({ active, name, username }) {
const header = RocketChat.placeholders.replace(RocketChat.settings.get('Email_Header') || '');
const footer = RocketChat.placeholders.replace(RocketChat.settings.get('Email_Footer') || '');
const activated = username ? 'Activated' : 'Approved';
const action = active ? activated : 'Deactivated';
const html = RocketChat.placeholders.replace(TAPi18n.__(`Accounts_Email_${ action }`), {
name: s.escapeHTML(name),
});
return header + html + footer;
},
};
const verifyEmailHtml = Accounts.emailTemplates.verifyEmail.text;
Accounts.emailTemplates.verifyEmail.html = function(user, url) {
url = url.replace(Meteor.absoluteUrl(), `${ Meteor.absoluteUrl() }login/`);
return verifyEmailHtml(user, url);
};
Accounts.urls.resetPassword = function(token) {
return Meteor.absoluteUrl(`reset-password/${ token }`);
};
Accounts.emailTemplates.resetPassword.html = Accounts.emailTemplates.resetPassword.text;
Accounts.emailTemplates.enrollAccount.subject = function(user = {}) {
let subject;
if (RocketChat.settings.get('Accounts_Enrollment_Customized')) {
subject = RocketChat.settings.get('Accounts_Enrollment_Email_Subject');
} else {
subject = TAPi18n.__('Accounts_Enrollment_Email_Subject_Default', {
lng: user.language || RocketChat.settings.get('language') || 'en',
});
}
return RocketChat.placeholders.replace(subject);
};
Accounts.emailTemplates.enrollAccount.html = function(user = {}/* , url*/) {
let html;
if (RocketChat.settings.get('Accounts_Enrollment_Customized')) {
html = RocketChat.settings.get('Accounts_Enrollment_Email');
} else {
html = TAPi18n.__('Accounts_Enrollment_Email_Default', {
lng: user.language || RocketChat.settings.get('language') || 'en',
});
}
const header = RocketChat.placeholders.replace(RocketChat.settings.get('Email_Header') || '');
const footer = RocketChat.placeholders.replace(RocketChat.settings.get('Email_Footer') || '');
html = RocketChat.placeholders.replace(html, {
name: s.escapeHTML(user.name),
email: user.emails && user.emails[0] && s.escapeHTML(user.emails[0].address),
});
return header + html + footer;
};
Accounts.onCreateUser(function(options, user = {}) {
RocketChat.callbacks.run('beforeCreateUser', options, user);
user.status = 'offline';
user.active = !RocketChat.settings.get('Accounts_ManuallyApproveNewUsers');
if (!user.name) {
if (options.profile) {
if (options.profile.name) {
user.name = options.profile.name;
} else if (options.profile.firstName && options.profile.lastName) {
// LinkedIn format
user.name = `${ options.profile.firstName } ${ options.profile.lastName }`;
} else if (options.profile.firstName) {
// LinkedIn format
user.name = options.profile.firstName;
}
}
}
if (user.services) {
for (const service of Object.values(user.services)) {
if (!user.name) {
user.name = service.name || service.username;
}
if (!user.emails && service.email) {
user.emails = [{
address: service.email,
verified: true,
}];
}
}
}
if (!user.active) {
const destinations = [];
RocketChat.models.Roles.findUsersInRole('admin').forEach((adminUser) => {
if (Array.isArray(adminUser.emails)) {
adminUser.emails.forEach((email) => {
destinations.push(`${ adminUser.name }<${ email.address }>`);
});
}
});
const email = {
to: destinations,
from: RocketChat.settings.get('From_Email'),
subject: Accounts.emailTemplates.userToActivate.subject(),
html: Accounts.emailTemplates.userToActivate.html(options),
};
Meteor.defer(() => Email.send(email));
}
return user;
});
Accounts.insertUserDoc = _.wrap(Accounts.insertUserDoc, function(insertUserDoc, options, user) {
let roles = [];
if (Match.test(user.globalRoles, [String]) && user.globalRoles.length > 0) {
roles = roles.concat(user.globalRoles);
}
delete user.globalRoles;
if (user.services && !user.services.password) {
const defaultAuthServiceRoles = String(RocketChat.settings.get('Accounts_Registration_AuthenticationServices_Default_Roles')).split(',');
if (defaultAuthServiceRoles.length > 0) {
roles = roles.concat(defaultAuthServiceRoles.map((s) => s.trim()));
}
}
if (!user.type) {
user.type = 'user';
}
const _id = insertUserDoc.call(Accounts, options, user);
user = Meteor.users.findOne({
_id,
});
if (user.username) {
if (options.joinDefaultChannels !== false && user.joinDefaultChannels !== false) {
Meteor.runAsUser(_id, function() {
return Meteor.call('joinDefaultChannels', options.joinDefaultChannelsSilenced);
});
}
if (user.type !== 'visitor') {
Meteor.defer(function() {
return RocketChat.callbacks.run('afterCreateUser', user);
});
}
}
if (roles.length === 0) {
const hasAdmin = RocketChat.models.Users.findOne({
roles: 'admin',
type: 'user',
}, {
fields: {
_id: 1,
},
});
if (hasAdmin) {
roles.push('user');
} else {
roles.push('admin');
if (RocketChat.settings.get('Show_Setup_Wizard') === 'pending') {
RocketChat.models.Settings.updateValueById('Show_Setup_Wizard', 'in_progress');
}
}
}
RocketChat.authz.addUserRoles(_id, roles);
return _id;
});
Accounts.validateLoginAttempt(function(login) {
login = RocketChat.callbacks.run('beforeValidateLogin', login);
if (login.allowed !== true) {
return login.allowed;
}
if (login.user.type === 'visitor') {
return true;
}
if (!!login.user.active !== true) {
throw new Meteor.Error('error-user-is-not-activated', 'User is not activated', {
function: 'Accounts.validateLoginAttempt',
});
}
if (!login.user.roles || !Array.isArray(login.user.roles)) {
throw new Meteor.Error('error-user-has-no-roles', 'User has no roles', {
function: 'Accounts.validateLoginAttempt',
});
}
if (login.user.roles.includes('admin') === false && login.type === 'password' && RocketChat.settings.get('Accounts_EmailVerification') === true) {
const validEmail = login.user.emails.filter((email) => email.verified === true);
if (validEmail.length === 0) {
throw new Meteor.Error('error-invalid-email', 'Invalid email __email__');
}
}
login = RocketChat.callbacks.run('onValidateLogin', login);
RocketChat.models.Users.updateLastLoginById(login.user._id);
Meteor.defer(function() {
return RocketChat.callbacks.run('afterValidateLogin', login);
});
return true;
});
Accounts.validateNewUser(function(user) {
if (user.type === 'visitor') {
return true;
}
if (RocketChat.settings.get('Accounts_Registration_AuthenticationServices_Enabled') === false && RocketChat.settings.get('LDAP_Enable') === false && !(user.services && user.services.password)) {
throw new Meteor.Error('registration-disabled-authentication-services', 'User registration is disabled for authentication services');
}
return true;
});
Accounts.validateNewUser(function(user) {
if (user.type === 'visitor') {
return true;
}
let domainWhiteList = RocketChat.settings.get('Accounts_AllowedDomainsList');
if (_.isEmpty(s.trim(domainWhiteList))) {
return true;
}
domainWhiteList = domainWhiteList.split(',').map((domain) => domain.trim());
if (user.emails && user.emails.length > 0) {
const email = user.emails[0].address;
const inWhiteList = domainWhiteList.some((domain) => email.match(`@${ RegExp.escape(domain) }$`));
if (inWhiteList === false) {
throw new Meteor.Error('error-invalid-domain');
}
}
return true;
});
|
'use strict';
const VueSSRDynamicChunkPlugin = require('./plugin/vue-ssr-dynamic-chunk-webpack-plugin');
exports.vuessrchunk = {
type: ['server'],
name: new VueSSRDynamicChunkPlugin(),
args: {
}
};
exports.extract = {
env: ['dev', 'test', 'prod'],
};
|
const express = require('express');
const router = express.Router();
/* GET home page. */
router.get('/', (req, res) => {
res.render('pdf2svg');
});
module.exports = router;
|
'use strict';
const findMedian = require('../script/8-13-findMedian');
describe('根据给定的数组找到其中的中位数:', () => {
it('[1,2,3,4,5,6]', () => {
const result = 3.5;
const origin = [1,2,3,4,5,6];
console.log(`[1,2,3,4,5,6]的中位数为3.5`);
expect(findMedian(origin)).toEqual(result);
});
it('[3,89,2,1,0]', () => {
const result = 2;
const origin = [3,89,2,1,0];
console.log(`[3,89,2,1,0]的中位数为2`);
expect(findMedian(origin)).toEqual(result);
});
it('[0,0,0,0,0,0]', () => {
const result = 0;
const origin = [0,0,0,0,0,0];
console.log(`[0,0,0,0,0,0]的中位数为0`);
expect(findMedian(origin)).toEqual(result);
});
it('[12,23,45,34,21]', () => {
const result = 23;
const origin = [12,23,45,34,21];
console.log(`[12,23,45,34,21]的中位数为23`);
expect(findMedian(origin)).toEqual(result);
});
}); |
import * as Action from './formActions';
import * as CONST from './formConstants';
describe('Form Actions', () => {
describe('setInitialData', () => {
describe('Tell the reducer to seed the form with initial values AND/OR errors', () => {
it('SHOULD return with the correct action type', () => {
const action = Action.setInitialData('name');
expect(action).toHaveMember('type');
expect(action.type).toBe(CONST.FORM_INITIAL_DATA);
});
it('SHOULD return with the given form name', () => {
const action = Action.setInitialData('name', { errors: {} });
expect(action).toHaveMember('formName');
expect(action.formName).toBe('name');
});
it('SHOULD return with an error object', () => {
const action = Action.setInitialData('name', {});
expect(action).toHaveMember('errors');
});
it('SHOULD return with a values object', () => {
const action = Action.setInitialData('name', {}, {});
expect(action).toHaveMember('values');
});
});
});
describe('setDataReplace', () => {
describe('Tell the reducer to replace the form data with values AND/OR errors', () => {
it('SHOULD return with the correct action type', () => {
const action = Action.setDataReplace('name');
expect(action).toHaveMember('type');
expect(action.type).toBe(CONST.FORM_DATA_REPLACE);
});
it('SHOULD return with the given form name', () => {
const action = Action.setDataReplace('name', { errors: {} });
expect(action).toHaveMember('formName');
expect(action.formName).toBe('name');
});
it('SHOULD return with an error object', () => {
const action = Action.setDataReplace('name', {});
expect(action).toHaveMember('errors');
});
it('SHOULD return with a values object', () => {
const action = Action.setDataReplace('name', {}, {});
expect(action).toHaveMember('values');
});
});
});
describe('setDataReplace', () => {
describe('Tell the reducer to merge the form values AND remove errors', () => {
it('SHOULD return with the correct action type', () => {
const action = Action.setDataMerge('name');
expect(action).toHaveMember('type');
expect(action.type).toBe(CONST.FORM_DATA_MERGE);
});
it('SHOULD return with the given form name', () => {
const action = Action.setDataMerge('name', { errors: {} });
expect(action).toHaveMember('formName');
expect(action.formName).toBe('name');
});
it('SHOULD return with an error object', () => {
const action = Action.setDataMerge('name', {});
expect(action).toHaveMember('errors');
});
it('SHOULD return with a values object', () => {
const action = Action.setDataMerge('name', {}, {});
expect(action).toHaveMember('values');
});
});
});
describe('setValidity', () => {
describe('Tell the reducer whether this form has error messages or not', () => {
it('SHOULD return with the correct action type', () => {
const action = Action.setValidity({});
expect(action).toHaveMember('type');
expect(action.type).toBe(CONST.FORM_VALIDATE);
});
it('SHOULD return an error message array member', () => {
const action = Action.setValidity({});
expect(action).toHaveMember('errors');
});
});
});
describe('setSingleValidity', () => {
describe('Tell the reducer whether this form element has error messages or not', () => {
it('SHOULD return with the correct action type', () => {
const action = Action.setSingleValidity({});
expect(action).toHaveMember('type');
expect(action.type).toBe(CONST.FORM_SINGLE_VALIDATE);
});
it('SHOULD return an error message array member', () => {
const action = Action.setSingleValidity({});
expect(action).toHaveMember('errors');
});
});
});
describe('setInputValue', () => {
describe('Tell the reducer that the value of an input element has changed', () => {
it('SHOULD return with the correct action type', () => {
const action = Action.setInputValue({});
expect(action).toHaveMember('type');
expect(action.type).toBe(CONST.FORM_INPUT_CHANGE);
});
it('SHOULD return with a formInput member', () => {
const action = Action.setInputValue({});
expect(action).toHaveMember('formInput');
});
});
});
describe('reset', () => {
describe('Tell the reducer to clean the form by removing all values and error messages', () => {
it('SHOULD return with the correct action type', () => {
const action = Action.reset({});
expect(action).toHaveMember('type');
expect(action.type).toBe(CONST.FORM_RESET);
});
});
});
describe('triggerValidate', () => {
describe('Tell the reducer to validate the form given', () => {
it('SHOULD return with the correct action type', () => {
let action = Action.triggerValidate('formName');
expect(action).toHaveMember('type');
expect(action.type).toBe(CONST.FORM_TRIGGER_VALIDATION);
action = Action.triggerValidate('formName', true);
expect(action).toHaveMember('type');
expect(action.type).toBe(CONST.FORM_TRIGGER_VALIDATION);
});
it('SHOULD return with the given params - formName, trigger', () => {
const action = Action.triggerValidate('formName', false);
expect(action).toHaveMember('formName');
expect(action).toHaveMember('trigger');
});
});
});
});
|
// Tally Votes in JavaScript Pairing Challenge.
// I worked on this challenge with: Max
// This challenge took 7 hours.
// These are the votes cast by each student. Do not alter these objects here.
var votes = {
"Alex": { president: "Bob", vicePresident: "Devin", secretary: "Gail", treasurer: "Kerry" },
"Bob": { president: "Mary", vicePresident: "Hermann", secretary: "Fred", treasurer: "Ivy" },
"Cindy": { president: "Cindy", vicePresident: "Hermann", secretary: "Bob", treasurer: "Bob" },
"Devin": { president: "Louise", vicePresident: "John", secretary: "Bob", treasurer: "Fred" },
"Ernest": { president: "Fred", vicePresident: "Hermann", secretary: "Fred", treasurer: "Ivy" },
"Fred": { president: "Louise", vicePresident: "Alex", secretary: "Ivy", treasurer: "Ivy" },
"Gail": { president: "Fred", vicePresident: "Alex", secretary: "Ivy", treasurer: "Bob" },
"Hermann": { president: "Ivy", vicePresident: "Kerry", secretary: "Fred", treasurer: "Ivy" },
"Ivy": { president: "Louise", vicePresident: "Hermann", secretary: "Fred", treasurer: "Gail" },
"John": { president: "Louise", vicePresident: "Hermann", secretary: "Fred", treasurer: "Kerry" },
"Kerry": { president: "Fred", vicePresident: "Mary", secretary: "Fred", treasurer: "Ivy" },
"Louise": { president: "Nate", vicePresident: "Alex", secretary: "Mary", treasurer: "Ivy" },
"Mary": { president: "Louise", vicePresident: "Oscar", secretary: "Nate", treasurer: "Ivy" },
"Nate": { president: "Oscar", vicePresident: "Hermann", secretary: "Fred", treasurer: "Tracy" },
"Oscar": { president: "Paulina", vicePresident: "Nate", secretary: "Fred", treasurer: "Ivy" },
"Paulina": { president: "Louise", vicePresident: "Bob", secretary: "Devin", treasurer: "Ivy" },
"Quintin": { president: "Fred", vicePresident: "Hermann", secretary: "Fred", treasurer: "Bob" },
"Romanda": { president: "Louise", vicePresident: "Steve", secretary: "Fred", treasurer: "Ivy" },
"Steve": { president: "Tracy", vicePresident: "Kerry", secretary: "Oscar", treasurer: "Xavier" },
"Tracy": { president: "Louise", vicePresident: "Hermann", secretary: "Fred", treasurer: "Ivy" },
"Ullyses": { president: "Louise", vicePresident: "Hermann", secretary: "Ivy", treasurer: "Bob" },
"Valorie": { president: "Wesley", vicePresident: "Bob", secretary: "Alex", treasurer: "Ivy" },
"Wesley": { president: "Bob", vicePresident: "Yvonne", secretary: "Valorie", treasurer: "Ivy" },
"Xavier": { president: "Steve", vicePresident: "Hermann", secretary: "Fred", treasurer: "Ivy" },
"Yvonne": { president: "Bob", vicePresident: "Zane", secretary: "Fred", treasurer: "Hermann" },
"Zane": { president: "Louise", vicePresident: "Hermann", secretary: "Fred", treasurer: "Mary" }
}
// Tally the votes in voteCount.
/* The name of each student receiving a vote for an office should become a property
of the respective office in voteCount. After Alex's votes have been tallied,
voteCount would be ...
var voteCount = {
president: { Bob: 1 },
vicePresident: { Devin: 1 },
secretary: { Gail: 1 },
treasurer: { Kerry: 1 }
}
// Pseudocode
Test 1.
Input: votes variables
Output: total number of votes for Bob for president
1. Enters Bob into the president field of the vote count list.
2. Create a counter.
3. Tick up counter for each time Bob is voted for by classmates for president.
4. Assign that amount to Bob's number of votes for president.
Test 2.
Input: votes variables
Output: total number of votes for Bob for vice president
1. Enters Bob into the vice president field of the vote count list.
2. Create a counter.
3. Tick up counter for each time Bob is voted for by classmates for vice president.
4. Assign that amount to Bob's number of votes for vice president.
Test 3.
Input: votes variables
Output: total number of votes for Bob for secretary
1. Enters Bob into the secretary field of the vote count list.
2. Create a counter.
3. Tick up counter for each time Bob is voted for by classmates for secretary.
4. Assign that amount to Bob's number of votes for secretary.
Test 4.
Input: votes variables
Output: total number of votes for Bob for tresurer
1. Enters Bob into the tresurer field of the vote count list.
2. Create a counter.
3. Tick up counter for each time Bob is voted for by classmates for tresurer.
4. Assign that amount to Bob's number of votes for tresurer.
Test 5.
Input: vote count
Output: The winner of the presidential election.
1. Tally all president votes for each candidate.
2. Compare total number of president votes by candidate.
3. Assign elected candidate who received most votes for president in the officers list.
Test 6.
Input: vote count
Output: The winner of the vice presidential election.
1. Tally all vice president votes for each candidate.
2. Compare total number of vice president votes by candidate.
3. Assign elected candidate who received most votes for vice president in the officers list.
Test 7.
Input: vote count
Output: The winner of the secretary election.
1. Tally all secretary votes for each candidate.
2. Compare total number of secretary votes by candidate.
3. Assign elected candidate who received most votes for secretary in the officers list.
Tes 8.
Input: vote count
Output: The winner of the treasurer election.
1. Tally all treasurer votes for each candidate.
2. Compare total number of treasurer votes by candidate.
3. Assign elected candidate who received most votes for treasurer in the officers list.
*/
// __________________________________________
// var voteCount = {
// president: {},
// vicePresident: {},
// secretary: {},
// treasurer: {}
// }
// var officers = {
// president: undefined,
// vicePresident: undefined,
// secretary: undefined,
// treasurer: undefined
// }
// voteCount.president['Bob'] = 0;
// voteCount.vicePresident['Bob'] = 0;
// voteCount.secretary['Bob'] = 0;
// voteCount.treasurer['Bob'] = 0;
// for(var voter in votes){
// if(votes[voter].president === "Bob"){
// voteCount.president['Bob']++;
// };
// // console.log(tally);
// // create a new variable for each voter
// };
// for(var voter in votes){
// if(votes[voter].vicePresident === "Bob"){
// voteCount.vicePresident['Bob']++;
// };
// // console.log(tally);
// // create a new variable for each voter
// };
// for(var voter in votes){
// if(votes[voter].secretary === "Bob"){
// voteCount.secretary['Bob']++;
// };
// // console.log(tally);
// // create a new variable for each voter
// };
// for(var voter in votes){
// if(votes[voter].treasurer === "Bob"){
// voteCount.treasurer['Bob']++;
// };
// // console.log(tally);
// // create a new variable for each voter
// };
// // Votes(object) with Alex(the voter(object inside votes)) which has Props for each office and their values are the person(candidate) they voted for.
// // We need to view every voter
// // We need to view/count there slection for each office
// for(voter in votes){
// if(votes.hasOwnProperty(voter)){
// var choices = votes[voter];
// //______________________________________
// for(var office in choices){
// if(choices.hasOwnProperty(office)){
// var candidate = choices[office];
// }
// }
// }
// }
// for(var key in voteCount){
// if(voteCount.hasOwnProperty(key)){
// var position = voteCount[key]
// position[voter] = 0;
// }
// for()
// if office === position && candidate === position[voter]
// position[voter]++;
// console.log(voteCount)
// Refactored Solution_________________________________
var voteCount = {
president: {},
vicePresident: {},
secretary: {},
treasurer: {}
}
var officers = {
president: undefined,
vicePresident: undefined,
secretary: undefined,
treasurer: undefined
}
for (var voter in votes) {
var voters_choices = votes[voter];
for(var office in voters_choices) {
var candidate = voters_choices[office];
if (voteCount[office][candidate] === undefined) {
voteCount[office][candidate] = 1;
}
else {
voteCount[office][candidate]++;
}
}
}
for (var position in voteCount){
var highest_vote_count = 0;
for (var person in voteCount[position]){
var persons_votes = voteCount[position][person];
if (persons_votes > highest_vote_count){
highest_vote_count = persons_votes;
officers[position] = person;
}
}
}
for (var position in officers){
console.log( officers[position] + " is the " + position );
}
// __________________________________________
// Reflection
What did you learn about iterating over nested objects in JavaScript?
Were you able to find useful methods to help you with this?
What concepts were solidified in the process of working through this challenge?
// __________________________________________
// Test Code: Do not alter code below this line.
function assert(test, message, test_number) {
if (!test) {
console.log(test_number + "false");
throw "ERROR: " + message;
}
console.log(test_number + "true");
return true;
}
assert(
(voteCount.president["Bob"] === 3),
"Bob should receive three votes for President.",
"1. "
)
assert(
(voteCount.vicePresident["Bob"] === 2),
"Bob should receive two votes for Vice President.",
"2. "
)
assert(
(voteCount.secretary["Bob"] === 2),
"Bob should receive two votes for Secretary.",
"3. "
)
assert(
(voteCount.treasurer["Bob"] === 4),
"Bob should receive four votes for Treasurer.",
"4. "
)
assert(
(officers.president === "Louise"),
"Louise should be elected President.",
"5. "
)
assert(
(officers.vicePresident === "Hermann"),
"Hermann should be elected Vice President.",
"6. "
)
assert(
(officers.secretary === "Fred"),
"Fred should be elected Secretary.",
"7. "
)
assert(
(officers.treasurer === "Ivy"),
"Ivy should be elected Treasurer.",
"8. "
) |
/**
* @source https://github.com/yoniholmes/grunt-text-replace/blob/master/lib/grunt-text-replace.js
*/
var grunt = require('grunt');
var path = require('path');
var gruntTextReplace = {};
exports.replace = function (settings) {
gruntTextReplace.replace(settings);
}
exports.replaceText = function (settings) {
var text = settings.text;
var replacements = settings.replacements;
return gruntTextReplace.replaceTextMultiple(text, replacements);
}
exports.replaceFile = function (settings) {
return gruntTextReplace.replaceFile(settings)
}
exports.replaceFileMultiple = function (settings) {
return gruntTextReplace.replaceFileMultiple(settings)
}
gruntTextReplace = {
replaceFileMultiple: function (settings) {
var sourceFiles = grunt.file.expand(settings.src);
sourceFiles.forEach(function (pathToSource) {
gruntTextReplace.replaceFile({
src: pathToSource,
dest: settings.dest,
replacements: settings.replacements
});
});
},
replaceFile: function (settings) {
var pathToSourceFile = settings.src;
var pathToDestinationFile = this.getPathToDestination(pathToSourceFile, settings.dest);
var replacements = settings.replacements;
var isThereAGenuineReplacement = replacements.reduce(function (previous, current) {
return previous || (current.from !== current.to)
}, false);
var isReplacementRequired = (pathToSourceFile !== pathToDestinationFile) || isThereAGenuineReplacement
if (isReplacementRequired) {
grunt.file.copy(pathToSourceFile, pathToDestinationFile, {
process: function (text) {
return gruntTextReplace.replaceTextMultiple(text, replacements);
}
});
}
},
replaceTextMultiple: function (text, replacements) {
return replacements.reduce(function (newText, replacement) {
return gruntTextReplace.replaceText({
text: newText,
from: replacement.from,
to: replacement.to
});
}, text);
},
replaceText: function (settings) {
var text = settings.text;
var from = this.convertPatternToRegex(settings.from);
var to = this.expandReplacement(settings.to);
return text.replace(from, to);
},
replace: function (settings) {
var src = grunt.file.expand(settings.src || []);
var dest = settings.dest;
var overwrite = settings.overwrite;
var replacements = settings.replacements;
var isDestinationDirectory = (/\/$/).test(dest);
var initialWarnCount = grunt.fail.warncount;
if (typeof dest === 'undefined' &&
typeof src === 'undefined' &&
typeof replacements === 'undefined') {
grunt.warn(gruntTextReplace.errorMessages.noTargetsDefined);
} else if (typeof dest === 'undefined' && overwrite !== true) {
grunt.warn(gruntTextReplace.errorMessages.noDestination);
} else if (typeof replacements === 'undefined') {
grunt.warn(gruntTextReplace.errorMessages.noReplacements);
} else if (typeof dest !== 'undefined' && overwrite === true) {
grunt.warn(gruntTextReplace.errorMessages.overwriteFailure);
} else if ((isDestinationDirectory === false && src.length > 1) && overwrite !== true) {
grunt.warn(gruntTextReplace.errorMessages.multipleSourceSingleDestination);
} else if (grunt.fail.warncount - initialWarnCount === 0) {
gruntTextReplace.replaceFileMultiple({
src: src,
dest: dest,
replacements: replacements
});
}
},
errorMessages: {
noTargetsDefined: "No targets were found. Remember to wrap functionality " +
"within a target.",
noDestination: "Destination is not defined! If you want to overwrite " +
"files, then make sure to set overwrite: true. If you don't wish to " +
"overwrite, then make sure to set a destination",
noReplacements: "No replacements were found.",
overwriteFailure: "Overwrite is to true, but a destination has also " +
"been defined. If you want to overwrite files, remove the destination. " +
"If you want to send files to a destination, then ensure overwrite is " +
"not set to true",
multipleSourceSingleDestination: "Cannot write multiple files to same " +
"file. If you wish to export to a directory, make sure there is a " +
"trailing slash on the destination. If you wish to write to a single " +
"file, make sure there is only one source file"
},
getPathToDestination: function (pathToSource, pathToDestinationFile) {
var isDestinationDirectory = (/\/$/).test(pathToDestinationFile);
var fileName = path.basename(pathToSource);
var newPathToDestination;
if (typeof pathToDestinationFile === 'undefined') {
newPathToDestination = pathToSource;
} else {
newPathToDestination = pathToDestinationFile + (isDestinationDirectory ? fileName : '');
}
return newPathToDestination;
},
convertPatternToRegex: function (pattern) {
var regexCharacters = '\\[](){}^$-.*+?|,/';
if (typeof pattern === 'string') {
regexCharacters.split('').forEach(function (character) {
var characterAsRegex = new RegExp('(\\' + character + ')', 'g');
pattern = pattern.replace(characterAsRegex, '\\$1');
});
pattern = new RegExp(pattern, 'g');
}
return pattern;
},
expandReplacement: function (replacement) {
if (typeof replacement === 'function') {
return this.expandFunctionReplacement(replacement);
} else if (typeof replacement === 'string') {
return this.expandStringReplacement(replacement);
} else {
return gruntTextReplace.expandNonStringReplacement(replacement);
}
},
expandFunctionReplacement: function (replacement) {
return function () {
var matchedSubstring = arguments[0];
var index = arguments[arguments.length - 2];
var fullText = arguments[arguments.length - 1];
var regexMatches = Array.prototype.slice.call(arguments, 1,
arguments.length - 2);
var returnValue = replacement(matchedSubstring, index, fullText,
regexMatches);
return (typeof returnValue === 'string') ?
gruntTextReplace.processGruntTemplate(returnValue) :
gruntTextReplace.expandNonStringReplacement(returnValue);
};
},
expandStringReplacement: function (replacement) {
return gruntTextReplace.processGruntTemplate(replacement);
},
expandNonStringReplacement: function (replacement) {
var isReplacementNullOrUndefined = (typeof replacement === 'undefined') || (replacement === null);
return isReplacementNullOrUndefined ? '' : String(replacement);
},
processGruntTemplate: function (string) {
var isProcessTemplateTrue = true;
if (grunt.task.current.data &&
grunt.task.current.data.options &&
typeof grunt.task.current.data.options.processTemplates !== 'undefined' &&
grunt.task.current.data.options.processTemplates === false) {
isProcessTemplateTrue = false;
}
return isProcessTemplateTrue ? grunt.template.process(string) : string;
}
}
|
var logout = angular.module('Logout', []);
logout.controller('LogoutController', ['$location', '$scope', '$rootScope', 'ParseSvc', function ($location, $scope, $rootScope, ParseSvc) {
var logoutCallback = function () {
$rootScope.$broadcast('new username', "");
$location.path('/login');
}
$scope.logout = function () {
ParseSvc.logout(logoutCallback);
}
}]);
|
/* jshint node: true */
'use strict';
var through = require('through2'),
cheerio = require("cheerio");
module.exports = function(baseUri, options) {
baseUri = baseUri || '//mc.yourdomainname.net/combo/?f=';
options = options || {};
return through.obj(function(file, enc, cb) {
var chunk = String(file.contents);
var src = {
scripts: [],
links: []
};
var genComboScriptUriTag = function() {
var uri = baseUri + src.scripts.join(options.splitter || ';');
var scriptTag = '<script type="text/javascript" src="' + uri + '"></script>';
var async = options.async || false;
if(chunk.match('<!--combo async:false-->')) {
async = false;
}
if(chunk.match('<!--combo async:true-->')) {
async = true;
}
if(async === true) {
scriptTag = '<script type="text/javascript" src="' + uri + '" async="async"></script>';
}
return scriptTag;
};
var genComboLinkUriTag = function() {
var uri = baseUri + src.links.join(options.splitter || ';');
var linkTag = '<link rel="stylesheet" href="' + uri + '" />';
return linkTag;
};
var group = (chunk.replace(/[\r\n]/g, '').match(/<\!\-\-\[if[^\]]+\]>.*?<\!\[endif\]\-\->/igm) || []).join('');
var scriptProcessor = function($, $1) {
// 增加忽略属性避免条件注释或者模板条件判断中的资源被合并
if($.match('data-ignore="true"')) {
return $;
}
// 忽略CSS条件注释中的COMBO
if(group && group.indexOf($) !== -1) {
return $;
}
if($.match(/\/\//igm)) {
var matchs;
if (options.replaceDomain) {
// replaceDomain为需要被替换的域名,覆盖默认正则
var reg = new RegExp('^(http(s)?:)?\/\/' + options.replaceDomain + '\/', 'igm');
matchs = $1.match(reg);
} else {
matchs = $1.match(/^(http(s)?:)?\/\/mc.yourdomainname.net\//igm);
}
if(matchs) {
src.scripts.push($1.replace(matchs[0], ''));
} else {
return $;
}
} else {
src.scripts.push($1.replace(/(.+\/)?[^\/]+\/\.\.\//igm, '$1'));
}
if(src.scripts.length === 1) {
return '<%%%SCRIPT_HOLDER%%%>';
}
return '';
};
var linkProcessor = function($, $1) {
// 增加忽略属性避免条件注释或者模板条件判断中的资源被合并
if($.match('data-ignore="true"')) {
return $;
}
if($.match(/\/\//igm)) {
var matchs;
if (options.replaceDomain) {
// replaceDomain为需要被替换的域名,覆盖默认正则
var reg = new RegExp('^(http(s)?:)?\/\/' + options.replaceDomain + '\/', 'igm');
matchs = $1.match(reg);
} else {
matchs = $1.match(/^(http(s)?:)?\/\/mc.yourdomainname.net\//igm);
}
if(matchs) {
src.links.push($1.replace(matchs[0], ''));
} else {
return $;
}
} else {
src.links.push($1.replace(/(.+\/)?[^\/]+\/\.\.\//igm, '$1'));
}
if(src.links.length === 1) {
return '<%%%STYLES_HOLDER%%%>';
}
return '';
};
chunk = chunk.replace(/<script[^>]+?src="([^"]+)"[^>]*><\/script>/igm, scriptProcessor);
chunk = chunk.replace(/<link[^>]+?href="([^"]+?)"[^>]+?rel="stylesheet"[^>]*>/igm, linkProcessor);
chunk = chunk.replace(/<link[^>]+?rel="stylesheet"[^>]+?href="([^"]+?)"[^>]*>/igm, linkProcessor);
chunk = chunk.replace('<%%%SCRIPT_HOLDER%%%>', genComboScriptUriTag());
chunk = chunk.replace('<%%%STYLES_HOLDER%%%>', genComboLinkUriTag());
file.contents = new Buffer(chunk);
cb(null, file);
});
};
|
"use strict";
module.exports = function(grunt) {
grunt.initConfig({
pkg: '<json:package.json>',
nodeunit: {
files: [
'test/**/*.js'
]
},
jshint: {
files: [
'Gruntfile.js',
'config.sample.js',
'index.js',
'lib/*.js',
'lib/server/public/js/**/*.js',
'test/**/*.js',
'server.js'
],
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
boss: true,
eqnull: true,
node: true
}
},
env : {
test : {
NODE_ENV : 'test'
},
dev : {
NODE_ENV : 'dev'
},
live : {
NODE_ENV : 'live'
}
},
docco: {
debug: {
src: ['lib/**/*.js'],
options: {
output: 'docs/'
}
}
}
});
grunt.loadTasks('tasks');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-docco2');
grunt.registerTask('test', ['jshint', 'env:test', 'nodeunit:files']);
grunt.registerTask('default', ['test']);
};
|
const { Command } = require('discord.js-commando')
const logger = new (require('../util/logger'))()
module.exports = class BaseCmd extends Command {
log (info) {
return logger.log(info)
}
warn (warning) {
return logger.warn(warning)
}
error (err) {
return logger.error(err)
}
getUsernames (userIds) {
let usernames = []
userIds.forEach(id => usernames.push(this.client.users.get(id).username))
return usernames
}
getMentionedUsernames (msg) {
let usernames = []
msg.mentions.users.forEach(user => usernames.push(user.username))
return `**${usernames.join('**, **')}**`
}
/**
* Cleans each argument within the array by converting it to lowercase and
* trimming any whitespace then adding it to a new array of the cleaned values
* to be returned.
*
* @param {string[]} args
*
* @returns {string[]}
*/
cleanArgs (args) {
let newArgs = []
args.forEach(val => newArgs.push(val.trim().toLowerCase()))
return newArgs
}
}
|
Thermostat.prototype.updateUp = function() {
this.up()
document.getElementById('temp').innerHTML = thermostat.temp;
};
Thermostat.prototype.updateDown = function() {
this.down()
document.getElementById('temp').innerHTML = thermostat.temp;
};
Thermostat.prototype.updateReset = function() {
this.reset()
document.getElementById('temp').innerHTML = thermostat.temp;
}
|
"use strict";
var _interopRequireDefault = function (obj) { return obj && obj.__esModule ? obj : { "default": obj }; };
var _Stream = require("../stream");
var _Stream2 = _interopRequireDefault(_Stream);
window.Stream = _Stream2["default"]; |
YUI.add('template-loader', function (Y, NAME) {
Y.TemplateLoader = function(uri) {
var cfg,
request;
cfg = {
sync: true
};
request = Y.io(uri, cfg);
return request.responseText;
};
}, '@VERSION@', {"requires": ["io"]});
|
var calendarModule = angular.module('inkwell-calendar');
calendarModule.directive('selectColorInput', function() {
return {
scope: {
modal: '=',
onSelect: '&'
},
restrict: 'E',
replace: true,
templateUrl: 'components/calendar/select-color.html',
controller: function($scope, activityColors) {
$scope.activityColors = activityColors;
}
}
});
|
import React from 'react'
import Helmet from 'react-helmet'
import {Link} from 'gatsby'
import styles from './../css/meetup.module.css'
import {defaultHelmetMeta, Layout} from './layout'
const PostLink = ({title, to}) => (
<div className={styles.post}>
<header className={styles.header}>
<h3 className={styles.header_title}>
<Link
className='title'
to={to}>
{title}
</Link>
</h3>
</header>
</div>
)
export default props => {
const {
pageContext: {
data: {meetups},
},
} = props
return (
<Layout>
<h2 className={styles.title}>🎤 Meetup 🎤</h2>
<div>
{meetups.map(({node: {title, date, path, formatedDate}}, index) => (
<PostLink
key={index}
title={title}
date={date}
formatedDate={formatedDate}
to={`/meetups/${path}`} />
))}
</div>
<Helmet meta={defaultHelmetMeta}>
<title>SPB Frontend. Meetups</title>
</Helmet>
</Layout>
)
}
|
(function () {
"use strict";
var mongoose = require('mongoose');
var crypto = require('crypto');
var jwt = require('jsonwebtoken');
var UserSchema = new mongoose.Schema({
username : {type: String, lowercase: true, unique: true},
hash: String,
salt: String
});
UserSchema.methods.setPassword = function(password){
this.salt = crypto.randomBytes(16).toString('hex');
this.hash = crypto.pbkdf2Sync(password, this.salt, 1000, 64).toString('hex');
};
UserSchema.methods.validPassword = function(password){
var hash = crypto.pbkdf2Sync(password, this.salt, 1000, 64).toString('hex');
return this.hash === hash;
};
UserSchema.methods.generateJWT = function() {
// set expiration to 60 days
var today = new Date();
var exp = new Date(today);
exp.setDate(today.getDate() + 60);
return jwt.sign({
_id: this._id, // The first agrument of the JSON Web Token is the _id: this._id, username: this.username, and exp: parseInt(exp.getTime() / 1000) - the whole first argument is the payload that gets signed.
username: this.username,
exp: parseInt(exp.getTime() / 1000),
}, 'SECRET'); // The second argument of the JSON Web Token is the secret used to sign tokens. It' hard coded right now but this will need to be changed to an environment variable.
}; // that just references the secret instead.
mongoose.model('User', UserSchema);
}()); |
version https://git-lfs.github.com/spec/v1
oid sha256:b34848b132ef0750dc0c0ccbac3f390b8372e7c339a86689d1d4e8eb3be16dab
size 9660
|
/**
* Stripe Token Model
*
* <%= whatIsThis %>.
*
* Refer to Stripe Documentation https://stripe.com/docs/api#token_object
*/
module.exports = {
autoPK: false,
attributes: {
id: {
type: 'string', //"tok_16GhzzBw8aZ7QiYmauEtvWUU"
primaryKey: true,
unique: true
},
livemode: {
type: 'boolean' //false
},
created: {
type: 'datetime' //1435029779
},
used: {
type: 'boolean' //false
},
object: {
type: 'string' //"token"
},
type: {
type: 'string' //"card"
},
card: {
type: 'json'
},
client_ip: {
type: 'string' //null
},
//Added to Model and doesn't exists in Stripe
lastStripeEvent: {
type: 'datetime'
}
},
beforeValidate: function (values, cb){
if(values.created){
values.created = new Date(values.created * 1000);
}
cb();
}
} |
var _ = require("underscore");
var files = require('./files.js');
var utils = require('./utils.js');
var httpHelpers = require('./http-helpers.js');
var archinfo = require('./archinfo.js');
var catalog = require('./catalog.js');
var Isopack = require('./isopack.js').Isopack;
var config = require('./config.js');
var buildmessage = require('./buildmessage.js');
var Console = require('./console.js').Console;
var colonConverter = require('./colon-converter.js');
exports.Tropohouse = function (root, options) {
var self = this;
options = options || {};
self.root = root;
self.platform = options.platform || process.platform;
};
// Return the directory containing our loaded collection of tools, releases and
// packages. If we're running an installed version, found at $HOME/.meteor, if
// we are running form a checkout, probably at $CHECKOUT_DIR/.meteor.
var defaultWarehouseDir = function () {
// a hook for tests, or i guess for users.
if (process.env.METEOR_WAREHOUSE_DIR)
return process.env.METEOR_WAREHOUSE_DIR;
var warehouseBase = files.inCheckout()
? files.getCurrentToolsDir() : files.getHomeDir();
// XXX This will be `.meteor` soon, once we've written the code to make the
// tropohouse and warehouse live together in harmony (eg, allowing tropohouse
// tools to springboard to warehouse tools).
return files.pathJoin(warehouseBase, ".meteor");
};
// The default tropohouse is on disk at defaultWarehouseDir(); you can make your
// own Tropohouse to override these things.
exports.default = new exports.Tropohouse(defaultWarehouseDir());
/**
* Extract a package tarball, and on Windows convert file paths and metadata
* @param {String} packageTarball path to tarball
* @param {Boolean} forceConvert Convert paths even on unix, for testing
* @return {String} Temporary directory with contents of package
*/
exports._extractAndConvert = function (packageTarball, forceConvert) {
var targetDirectory = files.mkdtemp();
files.extractTarGz(packageTarball, targetDirectory, {
forceConvert: forceConvert
});
if (process.platform === "win32" || forceConvert) {
// Packages published before the Windows release might have colons or
// other unsavory characters in path names. In hopes of making most of
// these packages work on Windows, we will try to automatically convert
// them.
//
// At this location in the code, the metadata inside the isopack is
// inconsistent with the actual file paths, since we convert some file
// paths inside extractTarGz. Now we need to convert the metadata to match
// the files.
// Step 1. Load the metadata from isopack.json and convert colons in the
// file paths. We have already converted the colons in the actual files
// while untarring.
var metadata = Isopack.readMetadataFromDirectory(targetDirectory);
var convertedMetadata = colonConverter.convertIsopack(metadata);
// Step 2. Write the isopack.json file
var isopackFileData = {};
isopackFileData[Isopack.currentFormat] = convertedMetadata;
var isopackJsonPath = files.pathJoin(targetDirectory, "isopack.json");
if (files.exists(isopackJsonPath)) {
files.chmod(isopackJsonPath, 0o777);
}
files.writeFile(isopackJsonPath,
new Buffer(JSON.stringify(isopackFileData, null, 2), 'utf8'),
{mode: 0o444});
// Step 3. Clean up old unipackage.json file if it exists
files.unlink(files.pathJoin(targetDirectory, "unipackage.json"));
// Result: Now we are in a state where the isopack.json file paths are
// consistent with the paths in the downloaded tarball.
// Now, we have to convert the unibuild files in the same way.
_.each(convertedMetadata.builds, function (unibuildMeta) {
var unibuildJsonPath = files.pathJoin(targetDirectory, unibuildMeta.path);
var unibuildJson = JSON.parse(files.readFile(unibuildJsonPath));
if (unibuildJson.format !== "unipackage-unibuild-pre1") {
throw new Error("Unsupported isopack unibuild format: " +
JSON.stringify(unibuildJson.format));
}
var convertedUnibuild = colonConverter.convertUnibuild(unibuildJson);
files.chmod(unibuildJsonPath, 0o777);
files.writeFile(unibuildJsonPath,
new Buffer(JSON.stringify(convertedUnibuild, null, 2), 'utf8'),
{mode: 0o444});
// Result: Now we are in a state where the unibuild file paths are
// consistent with the paths in the downloaded tarball.
});
// Lastly, convert the build plugins, which are in the JSImage format
_.each(convertedMetadata.plugins, function (pluginMeta) {
var programJsonPath = files.pathJoin(targetDirectory, pluginMeta.path);
var programJson = JSON.parse(files.readFile(programJsonPath));
if (programJson.format !== "javascript-image-pre1") {
throw new Error("Unsupported plugin format: " +
JSON.stringify(programJson.format));
}
var convertedPlugin = colonConverter.convertJSImage(programJson);
files.chmod(programJsonPath, 0o777);
files.writeFile(programJsonPath,
new Buffer(JSON.stringify(convertedPlugin, null, 2), 'utf8'),
{mode: 0o444});
// Result: Now we are in a state where the build plugin file paths are
// consistent with the paths in the downloaded tarball.
});
}
return targetDirectory;
};
_.extend(exports.Tropohouse.prototype, {
// Returns the load path where one can expect to find the package, at a given
// version, if we have already downloaded from the package server. Does not
// check for contents.
//
// Returns null if the package name is lexographically invalid.
packagePath: function (packageName, version, relative) {
var self = this;
if (! utils.isValidPackageName(packageName)) {
return null;
}
var relativePath = files.pathJoin(
config.getPackagesDirectoryName(),
colonConverter.convert(packageName),
version);
return relative ? relativePath : files.pathJoin(self.root, relativePath);
},
// Pretty extreme! We call this when we learn that something has changed on
// the server in a way that our sync protocol doesn't understand well.
wipeAllPackages: function () {
var self = this;
var packagesDirectoryName = config.getPackagesDirectoryName();
var packageRootDir = files.pathJoin(self.root, packagesDirectoryName);
var escapedPackages;
try {
// XXX this variable actually can't be accessed from outside this
// line, this is definitely a bug
escapedPackages = files.readdir(packageRootDir);
} catch (e) {
// No packages at all? We're done.
if (e.code === 'ENOENT')
return;
throw e;
}
// We want to be careful not to break the 'meteor' symlink inside the
// tropohouse. Hopefully nobody deleted/modified that package!
var latestToolPackageEscaped = null;
var latestToolVersion = null;
var currentToolPackageEscaped = null;
var currentToolVersion = null;
// Warning: we can't examine release.current here, because we might be
// currently processing release.load!
if (!files.inCheckout()) {
// toolsDir is something like:
// /home/user/.meteor/packages/meteor-tool/.1.0.17.ut200e++os.osx.x86_64+web.browser+web.cordova/meteor-tool-os.osx.x86_64
// or /C/Users/user/AppData/Local/Temp/mt-17618kk/tropohouse/packages/meteor-tool/33.0.1/mt-os.windows.x86_32 on Windows
var toolsDir = files.getCurrentToolsDir();
// eg, 'meteor-tool'
currentToolPackageEscaped =
files.pathBasename(files.pathDirname(files.pathDirname(toolsDir)));
// eg, '.1.0.17-xyz1.2.ut200e++os.osx.x86_64+web.browser+web.cordova' on Unix
// or '33.0.1' on Windows
var toolVersionDir = files.pathBasename(files.pathDirname(toolsDir));
if (process.platform !== 'win32') {
var toolVersionWithDotAndRandomBit = toolVersionDir.split('++')[0];
var pieces = toolVersionWithDotAndRandomBit.split('.');
pieces.shift();
pieces.pop();
currentToolVersion = pieces.join('.');
} else {
currentToolVersion = toolVersionDir;
}
var latestMeteorSymlink = self.latestMeteorSymlink();
if (latestMeteorSymlink.startsWith(packagesDirectoryName +
files.pathSep)) {
var rest = latestMeteorSymlink.substr(
packagesDirectoryName.length + files.pathSep.length);
pieces = rest.split(files.pathSep);
latestToolPackageEscaped = pieces[0];
latestToolVersion = pieces[1];
}
}
_.each(escapedPackages, function (packageEscaped) {
var packageDir = files.pathJoin(packageRootDir, packageEscaped);
var versions;
try {
versions = files.readdir(packageDir);
} catch (e) {
// Somebody put a file in here or something? Whatever, ignore.
if (e.code === 'ENOENT' || e.code === 'ENOTDIR')
return;
throw e;
}
_.each(versions, function (version) {
// Is this a pre-0.9.0 "warehouse" version with a hash name?
if (/^[a-f0-9]{3,}$/.test(version))
return;
// Skip the currently-latest tool (ie, don't break top-level meteor
// symlink). This includes both the symlink with its name and the thing
// it points to.
if (packageEscaped === latestToolPackageEscaped &&
(version === latestToolVersion ||
version.startsWith('.' + latestToolVersion + '.'))) {
return;
}
// Skip the currently-executing tool (ie, don't break the current
// operation).
if (packageEscaped === currentToolPackageEscaped &&
(version === currentToolVersion ||
version.startsWith('.' + currentToolVersion + '.'))) {
return;
}
files.rm_recursive(files.pathJoin(packageDir, version));
});
});
},
// Returns true if the given package at the given version exists on disk, or
// false otherwise. Takes in the following:
// - packageName: name of the package
// - version: version
// - architectures: (optional) array of architectures. Defaults to
// archinfo.host().
installed: function (options) {
var self = this;
if (!options.packageName)
throw Error("Missing required argument: packageName");
if (!options.version)
throw Error("Missing required argument: version");
var architectures = options.architectures || [archinfo.host()];
var downloaded = self._alreadyDownloaded({
packageName: options.packageName,
version: options.version
});
return _.every(architectures, function (requiredArch) {
return archinfo.mostSpecificMatch(requiredArch, downloaded);
});
},
// Contacts the package server, downloads and extracts a tarball for a given
// buildRecord into a temporary directory, whose path is returned.
//
// XXX: Error handling.
_downloadBuildToTempDir: function (versionInfo, buildRecord) {
var url = buildRecord.build.url;
// XXX: We use one progress for download & untar; this isn't ideal:
// it relies on extractTarGz being fast and not reporting any progress.
// Really, we should create two subtasks
// (and, we should stream the download to the tar extractor)
var packageTarball = httpHelpers.getUrl({
url: url,
encoding: null,
progress: buildmessage.getCurrentProgressTracker(),
wait: false
});
return exports._extractAndConvert(packageTarball);
},
// Given a package name and version, returns the architectures for
// which we have downloaded this package
//
// Throws if the symlink cannot be read for any reason other than
// ENOENT/
_alreadyDownloaded: function (options) {
var self = this;
var packageName = options.packageName;
var version = options.version;
if (!options.packageName)
throw Error("Missing required argument: packageName");
if (!options.version)
throw Error("Missing required argument: version");
// Figure out what arches (if any) we have loaded for this package version
// already.
var packagePath = self.packagePath(packageName, version);
var downloadedArches = [];
// Find out which arches we have by reading the isopack metadata
var packageMetadata = Isopack.readMetadataFromDirectory(packagePath);
// packageMetadata is null if there is no package at packagePath
if (packageMetadata) {
downloadedArches = _.pluck(packageMetadata.builds, "arch");
}
return downloadedArches;
},
_saveIsopack: function (isopack, packageName) {
// XXX does this actually need the name as an argument or can we just get
// it from isopack?
var self = this;
if (self.platform === "win32") {
isopack.saveToPath(self.packagePath(packageName, isopack.version));
} else {
// Note: wipeAllPackages depends on this filename structure
// On Mac and Linux, we used to use a filename structure that used the
// names of symlinks to determine which builds we have downloaded. We no
// longer need this because we now parse package metadata, but we still
// need to write the symlinks correctly so that old meteor tools can
// still read newly downloaded packages.
var newPackageLinkTarget = '.' + isopack.version + '.' +
utils.randomToken() + '++' + isopack.buildArchitectures();
var combinedDirectory = self.packagePath(
packageName, newPackageLinkTarget);
isopack.saveToPath(combinedDirectory);
files.symlinkOverSync(newPackageLinkTarget,
self.packagePath(packageName, isopack.version));
}
},
// Given a package name, version, and required architectures, checks to make
// sure that we have the package downloaded at the requested arch. If we do,
// returns null.
//
// Otherwise, if the catalog has no information about appropriate builds,
// registers a buildmessage error and returns null.
//
// Otherwise, returns a 'downloader' object with keys packageName, version,
// and download; download is a method which should be called in a buildmessage
// capture which actually downloads the package (registering any errors with
// buildmessage).
_makeDownloader: function (options) {
var self = this;
buildmessage.assertInJob();
if (!options.packageName)
throw Error("Missing required argument: packageName");
if (!options.version)
throw Error("Missing required argument: version");
if (!options.architectures)
throw Error("Missing required argument: architectures");
var packageName = options.packageName;
var version = options.version;
// Look up which arches we have already downloaded
var downloadedArches = self._alreadyDownloaded({
packageName: packageName,
version: version
});
var archesToDownload = _.filter(options.architectures, function (requiredArch) {
return !archinfo.mostSpecificMatch(requiredArch, downloadedArches);
});
// Have everything we need? Great.
if (!archesToDownload.length) {
Console.debug("Local package version is up-to-date:", packageName + "@" + version);
return null;
}
// Since we are downloading from the server (and we've already done the
// local package check), we can use the official catalog here. (This is
// important, since springboarding calls this function before the complete
// catalog is ready!)
var buildsToDownload = catalog.official.getBuildsForArches(
packageName, version, archesToDownload);
if (! buildsToDownload) {
buildmessage.error(
"No compatible binary build found for this package. " +
"Contact the package author and ask them to publish it " +
"for your platform.", {tags: { refreshCouldHelp: true }});
return null;
}
var packagePath = self.packagePath(packageName, version);
var download = function download () {
buildmessage.assertInCapture();
Console.debug("Downloading missing local versions of package",
packageName + "@" + version, ":", archesToDownload);
buildmessage.enterJob({
title: "downloading " + packageName + "@" + version + "..."
}, function() {
var buildInputDirs = [];
var buildTempDirs = [];
var packageLinkTarget = null;
// Find the previous actual directory of the package
if (self.platform === "win32") {
// On Windows, we don't use symlinks.
// If there's already a package in the tropohouse, start with it.
if (files.exists(packagePath)) {
buildInputDirs.push(packagePath);
}
} else {
// On posix, we have a symlink structure. Get the target of the
// symlink so that we can delete it later.
try {
packageLinkTarget = files.readlink(packagePath);
} catch (e) {
// Complain about anything other than "we don't have it at all".
// This includes "not a symlink": The main reason this would not be
// a symlink is if it's a directory containing a pre-0.9.0 package
// (ie, this is a warehouse package not a tropohouse package). But
// the versions should not overlap: warehouse versions are truncated
// SHAs whereas tropohouse versions should be semver-like.
if (e.code !== 'ENOENT')
throw e;
}
// If there's already a package in the tropohouse, start with it.
if (packageLinkTarget) {
buildInputDirs.push(
files.pathResolve(files.pathDirname(packagePath),
packageLinkTarget));
}
}
// XXX how does concurrency work here? we could just get errors if we
// try to rename over the other thing? but that's the same as in
// warehouse?
_.each(buildsToDownload, function (build) {
buildmessage.enterJob({
title: "downloading " + packageName + "@" + version + "..."
}, function() {
try {
var buildTempDir = self._downloadBuildToTempDir(
{ packageName: packageName, version: version }, build);
} catch (e) {
if (!(e instanceof files.OfflineError))
throw e;
buildmessage.error(e.error.message);
}
buildInputDirs.push(buildTempDir);
buildTempDirs.push(buildTempDir);
});
});
if (buildmessage.jobHasMessages())
return;
// We need to turn our builds into a single isopack.
var isopack = new Isopack();
_.each(buildInputDirs, function (buildTempDir, i) {
isopack._loadUnibuildsFromPath(
packageName,
buildTempDir,
{firstIsopack: i === 0});
});
self._saveIsopack(isopack, packageName, version);
// Delete temp directories now (asynchronously).
_.each(buildTempDirs, function (buildTempDir) {
files.freeTempDir(buildTempDir);
});
// Clean up old version.
if (packageLinkTarget) {
files.rm_recursive(self.packagePath(packageName, packageLinkTarget));
}
});
};
return {
packageName: packageName,
version: version,
download: download
};
},
// Takes in a PackageMap object. Downloads any versioned packages we don't
// already have.
//
// Reports errors via buildmessage.
downloadPackagesMissingFromMap: function (packageMap, options) {
var self = this;
buildmessage.assertInCapture();
options = options || {};
var serverArchs = options.serverArchitectures || [archinfo.host()];
var downloader;
var downloaders = [];
packageMap.eachPackage(function (packageName, info) {
if (info.kind !== 'versioned')
return;
buildmessage.enterJob(
"checking for " + packageName + "@" + info.version,
function () {
downloader = self._makeDownloader({
packageName: packageName,
version: info.version,
architectures: serverArchs
});
if (buildmessage.jobHasMessages()) {
downloaders = null;
return;
}
if (downloader && downloaders)
downloaders.push(downloader);
}
);
});
// Did anything fail? Don't download anything.
if (! downloaders)
return;
// Nothing to download? Great.
if (! downloaders.length)
return;
// Just one package to download? Use a good message.
if (downloaders.length === 1) {
downloader = downloaders[0];
buildmessage.enterJob(
"downloading " + downloader.packageName + "@" + downloader.version,
function () {
downloader.download();
}
);
return;
}
// Download multiple packages in parallel.
// XXX use a better progress bar that shows how many you've
// finished downloading.
buildmessage.forkJoin({
title: 'downloading ' + downloaders.length + ' packages',
parallel: true
}, downloaders, function (downloader) {
downloader.download();
});
},
latestMeteorSymlink: function () {
var self = this;
var linkPath = files.pathJoin(self.root, 'meteor');
return files.readLinkToMeteorScript(linkPath, self.platform);
},
linkToLatestMeteor: function (scriptLocation) {
var self = this;
var linkPath = files.pathJoin(self.root, 'meteor');
files.linkToMeteorScript(scriptLocation, linkPath, self.platform);
},
_getPlatform: function () {
return this.platform;
}
});
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const json_ref_ready_to_node_1 = require("../src/json-ref-ready-to-node");
const casual_util_1 = require("./util/casual-util");
const node_1 = require("../src/models/node");
const casual = require("casual");
describe('JsonRefReadyToNode', () => {
let knownPaths;
beforeEach(() => {
knownPaths = {};
});
it(`sould retrieve node with its target and path properly set
when target is a primitive`, () => {
// Arrange
const target = casual_util_1.GetRandomPrimitive();
const path = casual.word;
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target, path, knownPaths);
// Assert
expect(result.target).toBe(target);
expect(result.path).toBe(path);
expect(path in knownPaths).toBeTruthy();
expect(knownPaths[path]).toBe(result);
});
it(`sould retrieve node with its target and path properly set
when target is a reference to an object`, () => {
// Arrange
const target = {};
const path = casual.word;
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target, path, knownPaths);
// Assert
expect(result.target).toBe(target);
expect(result.path).toBe(path);
expect(path in knownPaths).toBeTruthy();
expect(knownPaths[path]).toBe(result);
});
it(`sould retrieve node with its target and path properly set
when target is a reference to an array`, () => {
// Arrange
const target = [];
const path = casual.word;
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target, path, knownPaths);
// Assert
expect(result.target).toBe(target);
expect(result.path).toBe(path);
expect(path in knownPaths).toBeTruthy();
expect(knownPaths[path]).toBe(result);
});
it(`sould retrieve node with no children
when target is a primitive`, () => {
// Arrange
const target = casual_util_1.GetRandomPrimitive();
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target);
// Assert
expect(result.children).toEqual({});
});
it(`sould retrieve node with no children
when target is a reference to an empty object`, () => {
// Arrange
const target = {};
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target);
// Assert
expect(result.children).toEqual({});
});
it(`sould retrieve node with no children
when target is a reference to an empty array`, () => {
// Arrange
const target = [];
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target);
// Assert
expect(result.children).toEqual({});
});
it(`sould retrieve node with its children properly set
when target is a reference to an object having properties`, () => {
// Arrange
const randomProperties = new Array(20).fill(null)
.map(() => casual.word)
.distinct()
.sort()
.map(name => ({ name: name, value: casual_util_1.GetRandomPrimitive() }));
const target = randomProperties.reduce((obj, property) => Object.assign(obj, {
[property.name]: property.value
}), {});
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target);
// Assert
const childrenKeys = Object.keys(result.children).sort();
expect(childrenKeys).toEqual(randomProperties.map(property => property.name));
const childrenTargets = childrenKeys.map(key => result.children[key].target);
expect(childrenTargets).toEqual(randomProperties.map(property => property.value));
});
it(`sould retrieve node with its children properly set
when target is a reference to an array having values`, () => {
// Arrange
const target = new Array(20).fill(null)
.map(() => casual_util_1.GetRandomPrimitive());
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target);
// Assert
const targetStringKeys = Object.keys(target).sort();
const childrenKeys = Object.keys(result.children).sort();
expect(childrenKeys).toEqual(targetStringKeys);
const childrenTargets = childrenKeys.map(key => result.children[key].target);
expect(childrenTargets).toEqual(targetStringKeys.map(key => target[parseInt(key)]));
});
it(`sould retrieve node with its descendants properly set in cascade
when target is a reference to an object being a tree of primitives and objects`, () => {
// Arrange
const target = {
[casual.word]: casual_util_1.GetRandomPrimitive(),
[casual.word]: {
[casual.word]: casual_util_1.GetRandomPrimitive()
},
[casual.word]: {
[casual.word]: casual_util_1.GetRandomPrimitive(),
[casual.word]: {
[casual.word]: casual_util_1.GetRandomPrimitive()
}
},
[casual.word]: {
[casual.word]: casual_util_1.GetRandomPrimitive(),
[casual.word]: {
[casual.word]: casual_util_1.GetRandomPrimitive(),
[casual.word]: {
[casual.word]: casual_util_1.GetRandomPrimitive()
}
}
}
};
const expected = new node_1.Node('', target);
expected.children =
Object.keys(target).reduce((children, key) => Object.assign(children, { [key]: json_ref_ready_to_node_1.JsonRefReadyToNode(target[key], `/${key}`) }), {});
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target);
// Assert
expect(result).toEqual(expected);
});
it(`sould retrieve node with its descendants properly set in cascade
when target is a reference to an array being a tree of primitives and arrays`, () => {
// Arrange
const target = [
casual_util_1.GetRandomPrimitive(),
[
casual_util_1.GetRandomPrimitive()
],
[
casual_util_1.GetRandomPrimitive(),
[
casual_util_1.GetRandomPrimitive()
]
],
[
casual_util_1.GetRandomPrimitive(),
[
casual_util_1.GetRandomPrimitive(),
[
casual_util_1.GetRandomPrimitive()
]
]
]
];
const expected = new node_1.Node('', target);
expected.children =
Object.keys(target).reduce((children, key) => Object.assign(children, { [key]: json_ref_ready_to_node_1.JsonRefReadyToNode(target[parseInt(key)], `/${key}`) }), {});
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target);
// Assert
expect(result).toEqual(expected);
});
it(`sould retrieve node with its descendants properly set in cascade
when target is a reference to an object being a tree of mixed types`, () => {
// Arrange
const target = {
[casual.word]: casual_util_1.GetRandomPrimitive(),
[casual.word]: [
casual_util_1.GetRandomPrimitive()
],
[casual.word]: {
[casual.word]: casual_util_1.GetRandomPrimitive(),
[casual.word]: [
casual_util_1.GetRandomPrimitive()
]
},
[casual.word]: [
casual_util_1.GetRandomPrimitive(),
{
[casual.word]: casual_util_1.GetRandomPrimitive(),
[casual.word]: [
casual_util_1.GetRandomPrimitive()
]
}
]
};
const expected = new node_1.Node('', target);
expected.children =
Object.keys(target).reduce((children, key) => Object.assign(children, { [key]: json_ref_ready_to_node_1.JsonRefReadyToNode(target[key], `/${key}`) }), {});
// Act
const result = json_ref_ready_to_node_1.JsonRefReadyToNode(target);
// Assert
expect(result).toEqual(expected);
});
});
//# sourceMappingURL=json-ref-ready-to-node.spec.js.map |
ph.module(
'playhouse.voice-over'
)
.defines(function()
{
ph.VoiceOver = ph.Class.extend(
{
isPlaying : false,
index : 0,
sequence : [],
completeCallback : null,
completeScope : null,
completeParams : null,
soundObj : null,
staticInit : function()
{
return ph.vo || null;
},
init : function()
{
ph.vo = this;
},
play : function(sequence, callback, params, scope)
{
this.stop();
this.sequence = sequence instanceof Array ? sequence : [sequence];
this.completeCallback = callback || null;
this.completeScope = scope || null;
this.completeParams = params || null;
this.playNext();
},
playNext : function()
{
var sequence = this.sequence[this.index++];
if ( sequence )
cjs.Tween.get(this, { override : true }).wait( typeof sequence === 'object' ? sequence.delay || 0 : 0 ).call(this._startVO, [sequence], this);
else
this.stop( true );
},
_startVO : function(sequence)
{
this.soundObj = createjs.Sound.play(typeof sequence === 'object' ? sequence.id : sequence, createjs.Sound.INTERRUPT_ANY, 1); // 1 millisecond delay so we can attach events, haha
this.soundObj.on('succeeded', this._startedVO, this, true, sequence);
this.soundObj.on('complete', this._endVO, this, true, sequence);
},
_startedVO : function(e, data)
{
this.isPlaying = true;
if ( typeof data === 'object' && typeof data.beginCallback === 'function' )
data.beginCallback.apply(data.beginScope || this.completeScope, data.beginParams);
},
_endVO : function(e, data)
{
// a small catch just in case we are fading out
if ( !this.isPlaying )
return;
// only if its a function
if ( typeof data === 'object' && typeof data.endCallback === 'function' )
data.endCallback.apply(data.endScope || this.completeScope, data.endParams);
// play the next one
this.playNext();
},
stop : function(callCompleteCallbacks)
{
createjs.Tween.removeTweens(this);
if ( this.soundObj )
{
this.soundObj.stop();
this.soundObj.removeAllEventListeners();
createjs.Tween.removeTweens( this.soundObj );
}
this.soundObj = null;
this.index = 0;
this.isPlaying = false;
var completeCallback = this.completeCallback;
var completeScope = this.completeScope;
var completeParams = this.completeParams;
this.completeCallback = null;
this.completeScope = null;
this.completeParams = null;
if ( callCompleteCallbacks && completeCallback )
completeCallback.apply(completeScope, completeParams);
},
fadeOut : function(time, callCompleteCallbacks)
{
if ( !this.soundObj )
return createjs.Tween.get({});
this.isPlaying = false;
createjs.Tween.removeTweens(this);
if ( this.soundObj )
return createjs.Tween.get(this.soundObj, { override : true }).to({ volume : 0 }, time || 600).call(this.stop, [callCompleteCallbacks], this);
}
});
}); |
var classJson_1_1ValueIteratorBase =
[
[ "difference_type", "classJson_1_1ValueIteratorBase.html#a4e44bf8cbd17ec8d6e2c185904a15ebd", null ],
[ "iterator_category", "classJson_1_1ValueIteratorBase.html#a02fd11a4fbdc0007da1e8bcf5e6b83c3", null ],
[ "SelfType", "classJson_1_1ValueIteratorBase.html#a9d2a940d03ea06d20d972f41a89149ee", null ],
[ "size_t", "classJson_1_1ValueIteratorBase.html#a9d3a3c7ce5cdefe23cb486239cf07bb5", null ],
[ "ValueIteratorBase", "classJson_1_1ValueIteratorBase.html#af45b028d9ff9cbd2554a87878b42dd75", null ],
[ "ValueIteratorBase", "classJson_1_1ValueIteratorBase.html#a640e990e5f03a96fd650122a2906f59d", null ],
[ "computeDistance", "classJson_1_1ValueIteratorBase.html#af11473c9e20d07782e42b52a2f9e4540", null ],
[ "copy", "classJson_1_1ValueIteratorBase.html#a496e6aba44808433ec5858c178be5719", null ],
[ "decrement", "classJson_1_1ValueIteratorBase.html#affc8cf5ff54a9f432cc693362c153fa6", null ],
[ "deref", "classJson_1_1ValueIteratorBase.html#aa5b75c9514a30ba2ea3c9a35c165c18e", null ],
[ "increment", "classJson_1_1ValueIteratorBase.html#afe58f9534e1fd2033419fd9fe244551e", null ],
[ "index", "classJson_1_1ValueIteratorBase.html#a549c66a0bd20e9ae772175a5c0d2e88a", null ],
[ "isEqual", "classJson_1_1ValueIteratorBase.html#a010b5ad3f3337ae3732e5d7e16ca5e25", null ],
[ "key", "classJson_1_1ValueIteratorBase.html#a3838ba39c43c518cf3ed4aa6ce78ccad", null ],
[ "memberName", "classJson_1_1ValueIteratorBase.html#a54765da6759fd3f1edcbfbaf308ec263", null ],
[ "memberName", "classJson_1_1ValueIteratorBase.html#a391c9cbd0edf9a447b37df00e8ce6059", null ],
[ "name", "classJson_1_1ValueIteratorBase.html#a522989403c976fdbb94da846b99418db", null ],
[ "operator!=", "classJson_1_1ValueIteratorBase.html#aa83bdcc8114b7d040eb8eb42eeed5f4a", null ],
[ "operator-", "classJson_1_1ValueIteratorBase.html#a98e254263fca5f1fc8fcac7bcb0260bf", null ],
[ "operator==", "classJson_1_1ValueIteratorBase.html#a1248d8016f88b51371a0fcbd355b3cfd", null ]
]; |
define([
'backbone',
'hbs!tmpl/item/jui-select-picker-view'
],
// @todo select picker needs to close when you click outside of it
function (Backbone, tmpl) {
'use strict';
/* Return a ItemView class definition */
return Backbone.Marionette.ItemView.extend({
ui: {
example1: '#categories',
example2: '#other-options',
example3: '#other-options-2',
example4: '#example-4-options'
},
template: tmpl,
onShow: function () {
// Expands on click
var ui = this.ui,
// Example 1 - expands on click
$example1 = ui.example1.juiSelectPicker({
useSelectedLabelPrefixAndSuffix: true,
labelText: 'Select a Category:',
skipFirstOptionItem: true,
expandOn: 'click',
collapseOn: 'click'
}),
// Example 2 - expands on hover
$example2 = ui.example2.juiSelectPicker({
wrapperElm: {
selector: '.jui-select-picker-example-1',
attribs: {
'class': 'jui-select-picker jui-select-picker-example-1'
}
},
useSelectedLabelPrefixAndSuffix: true,
selectedLabelPrefix: '< "',
selectedLabelSuffix: '" >',
skipFirstOptionItem: true,
labelText: '"Option":',
expandOn: 'mouseenter',
collapseOn: 'mouseleave'
}),
// Example 3 - expands on hover and has no value attributes in select element
$example3 = ui.example3.juiSelectPicker({
wrapperElm: {
selector: '.jui-select-picker-example-1',
attribs: {
'class': 'jui-select-picker jui-select-picker-example-1'
}
},
useSelectedLabelPrefixAndSuffix: true,
selectedLabelPrefix: '< "',
selectedLabelSuffix: '" >',
skipFirstOptionItem: true,
labelText: '"Option":',
expandOn: 'mouseenter',
collapseOn: 'mouseleave'
}),
// Example 4 - expands on click
$example4 = ui.example4.juiSelectPicker({
useSelectedLabelPrefixAndSuffix: true,
selectedLabelPrefix: '< "',
selectedLabelSuffix: '" >',
labelText: 'Select a Category:',
skipFirstOptionItem: true,
expandOn: 'click',
collapseOn: 'click'
});
// Trigger tests
$example1.juiSelectPicker('getUiElement', 'wrapperElm').on('expand',function (e) {
// console.log('An "expand" event has occurred on example 1');
}).on('collapse', function (e) {
// console.log('A "collapse" event has occurred on example 2');
});
// Toggle the select element
$('.toggle-select-element').click(function () {
var selElm = $(this).parent().find('select');
if (selElm.attr('hidden') === 'hidden') {
selElm.attr('hidden', false);
selElm.css('display', 'block');
}
else {
selElm.attr('hidden', 'hidden');
selElm.css('display', 'none');
}
});
$('.add-items-to-select-element').click(function () {
$example1.append('<option> Random element' + Math.random() + '</option>')
$example1.juiSelectPicker('refreshOptions');
});
$('.btn.refresh', this.$el).click(function () {
$example1.juiSelectPicker('refreshOptions');
});
},
onClose: function () {
var ui = this.ui;
ui.example1.juiSelectPicker('destroy');
ui.example2.juiSelectPicker('destroy');
ui.example3.juiSelectPicker('destroy');
ui.example4.juiSelectPicker('destroy');
delete ui.example1;
delete ui.example2;
delete ui.example3;
delete ui.example4;
}
});
});
|
/*
* Kendo UI v2015.1.408 (http://www.telerik.com/kendo-ui)
* Copyright 2015 Telerik AD. All rights reserved.
*
* Kendo UI commercial licenses may be obtained at
* http://www.telerik.com/purchase/license-agreement/kendo-ui-complete
* If you do not own a commercial license, this file shall be governed by the trial license terms.
*/
(function(f, define){
define([ "./kendo.core", "./kendo.popup" ], f);
})(function(){
(function($, undefined) {
var kendo = window.kendo,
Widget = kendo.ui.Widget,
proxy = $.proxy,
extend = $.extend,
setTimeout = window.setTimeout,
CLICK = "click",
SHOW = "show",
HIDE = "hide",
KNOTIFICATION = "k-notification",
KICLOSE = ".k-notification-wrap .k-i-close",
INFO = "info",
SUCCESS = "success",
WARNING = "warning",
ERROR = "error",
TOP = "top",
LEFT = "left",
BOTTOM = "bottom",
RIGHT = "right",
UP = "up",
NS = ".kendoNotification",
WRAPPER = '<div class="k-widget k-notification"></div>',
TEMPLATE = '<div class="k-notification-wrap">' +
'<span class="k-icon k-i-note">#=typeIcon#</span>' +
'#=content#' +
'<span class="k-icon k-i-close">Hide</span>' +
'</div>';
var Notification = Widget.extend({
init: function(element, options) {
var that = this;
Widget.fn.init.call(that, element, options);
options = that.options;
if (!options.appendTo || !$(options.appendTo).is(element)) {
that.element.hide();
}
that._compileTemplates(options.templates);
that._guid = "_" + kendo.guid();
that._isRtl = kendo.support.isRtl(element);
that._compileStacking(options.stacking, options.position.top);
kendo.notify(that);
},
events: [
SHOW,
HIDE
],
options: {
name: "Notification",
position: {
pinned: true,
top: null,
left: null,
bottom: 20,
right: 20
},
stacking: "default",
hideOnClick: true,
button: false,
allowHideAfter: 0,
autoHideAfter: 5000,
appendTo: null,
width: null,
height: null,
templates: [],
animation: {
open: {
effects: "fade:in",
duration: 300
},
close: {
effects: "fade:out",
duration: 600,
hide: true
}
}
},
_compileTemplates: function(templates) {
var that = this;
var kendoTemplate = kendo.template;
that._compiled = {};
$.each(templates, function(key, value) {
that._compiled[value.type] = kendoTemplate(value.template || $("#" + value.templateId).html());
});
that._defaultCompiled = kendoTemplate(TEMPLATE);
},
_getCompiled: function(type) {
var that = this;
var defaultCompiled = that._defaultCompiled;
return type ? that._compiled[type] || defaultCompiled : defaultCompiled;
},
_compileStacking: function(stacking, top) {
var that = this,
paddings = { paddingTop: 0, paddingRight: 0, paddingBottom: 0, paddingLeft: 0 },
origin, position;
switch (stacking) {
case "down":
origin = BOTTOM + " " + LEFT;
position = TOP + " " + LEFT;
delete paddings.paddingBottom;
break;
case RIGHT:
origin = TOP + " " + RIGHT;
position = TOP + " " + LEFT;
delete paddings.paddingRight;
break;
case LEFT:
origin = TOP + " " + LEFT;
position = TOP + " " + RIGHT;
delete paddings.paddingLeft;
break;
case UP:
origin = TOP + " " + LEFT;
position = BOTTOM + " " + LEFT;
delete paddings.paddingTop;
break;
default:
if (top !== null) {
origin = BOTTOM + " " + LEFT;
position = TOP + " " + LEFT;
delete paddings.paddingBottom;
} else {
origin = TOP + " " + LEFT;
position = BOTTOM + " " + LEFT;
delete paddings.paddingTop;
}
break;
}
that._popupOrigin = origin;
that._popupPosition = position;
that._popupPaddings = paddings;
},
_attachPopupEvents: function(options, popup) {
var that = this,
allowHideAfter = options.allowHideAfter,
attachDelay = !isNaN(allowHideAfter) && allowHideAfter > 0,
closeIcon;
function attachClick(target) {
target.on(CLICK + NS, function() {
popup.close();
});
}
if (options.hideOnClick) {
popup.bind("activate", function(e) {
if (attachDelay) {
setTimeout(function(){
attachClick(popup.element);
}, allowHideAfter);
} else {
attachClick(popup.element);
}
});
} else if (options.button) {
closeIcon = popup.element.find(KICLOSE);
if (attachDelay) {
setTimeout(function(){
attachClick(closeIcon);
}, allowHideAfter);
} else {
attachClick(closeIcon);
}
}
},
_showPopup: function(wrapper, options) {
var that = this,
autoHideAfter = options.autoHideAfter,
x = options.position.left,
y = options.position.top,
allowHideAfter = options.allowHideAfter,
popup, openPopup, attachClick, closeIcon;
openPopup = $("." + that._guid).last();
popup = new kendo.ui.Popup(wrapper, {
anchor: openPopup[0] ? openPopup : document.body,
origin: that._popupOrigin,
position: that._popupPosition,
animation: options.animation,
modal: true,
collision: "",
isRtl: that._isRtl,
close: function(e) {
that._triggerHide(this.element);
},
deactivate: function(e) {
e.sender.element.off(NS);
e.sender.element.find(KICLOSE).off(NS);
e.sender.destroy();
}
});
that._attachPopupEvents(options, popup);
if (openPopup[0]) {
popup.open();
} else {
if (x === null) {
x = $(window).width() - wrapper.width() - options.position.right;
}
if (y === null) {
y = $(window).height() - wrapper.height() - options.position.bottom;
}
popup.open(x, y);
}
popup.wrapper.addClass(that._guid).css(extend({margin:0}, that._popupPaddings));
if (options.position.pinned) {
popup.wrapper.css("position", "fixed");
if (openPopup[0]) {
that._togglePin(popup.wrapper, true);
}
} else if (!openPopup[0]) {
that._togglePin(popup.wrapper, false);
}
if (autoHideAfter > 0) {
setTimeout(function(){
popup.close();
}, autoHideAfter);
}
},
_togglePin: function(wrapper, pin) {
var win = $(window),
sign = pin ? -1 : 1;
wrapper.css({
top: parseInt(wrapper.css(TOP), 10) + sign * win.scrollTop(),
left: parseInt(wrapper.css(LEFT), 10) + sign * win.scrollLeft()
});
},
_attachStaticEvents: function(options, wrapper) {
var that = this,
allowHideAfter = options.allowHideAfter,
attachDelay = !isNaN(allowHideAfter) && allowHideAfter > 0;
function attachClick(target) {
target.on(CLICK + NS, proxy(that._hideStatic, that, wrapper));
}
if (options.hideOnClick) {
if (attachDelay) {
setTimeout(function(){
attachClick(wrapper);
}, allowHideAfter);
} else {
attachClick(wrapper);
}
} else if (options.button) {
if (attachDelay) {
setTimeout(function(){
attachClick(wrapper.find(KICLOSE));
}, allowHideAfter);
} else {
attachClick(wrapper.find(KICLOSE));
}
}
},
_showStatic: function(wrapper, options) {
var that = this,
autoHideAfter = options.autoHideAfter,
animation = options.animation,
insertionMethod = options.stacking == UP || options.stacking == LEFT ? "prependTo" : "appendTo",
attachClick;
wrapper
.addClass(that._guid)
[insertionMethod](options.appendTo)
.hide()
.kendoAnimate(animation.open || false);
that._attachStaticEvents(options, wrapper);
if (autoHideAfter > 0) {
setTimeout(function(){
that._hideStatic(wrapper);
}, autoHideAfter);
}
},
_hideStatic: function(wrapper) {
wrapper.kendoAnimate(extend(this.options.animation.close || false, { complete: function() {
wrapper.off(NS).find(KICLOSE).off(NS);
wrapper.remove();
}}));
this._triggerHide(wrapper);
},
_triggerHide: function(element) {
this.trigger(HIDE, { element: element });
this.angular("cleanup", function(){
return { elements: element };
});
},
show: function(content, type) {
var that = this,
options = that.options,
wrapper = $(WRAPPER),
args, defaultArgs, popup;
if (!type) {
type = INFO;
}
if (content !== null && content !== undefined && content !== "") {
if (kendo.isFunction(content)) {
content = content();
}
defaultArgs = {typeIcon: type, content: ""};
if ($.isPlainObject(content)) {
args = extend(defaultArgs, content);
} else {
args = extend(defaultArgs, {content: content});
}
wrapper
.addClass(KNOTIFICATION + "-" + type)
.toggleClass(KNOTIFICATION + "-button", options.button)
.attr("data-role", "alert")
.css({width: options.width, height: options.height})
.append(that._getCompiled(type)(args));
that.angular("compile", function(){
return {
elements: wrapper,
data: [{ dataItem: args }]
};
});
if ($(options.appendTo)[0]) {
that._showStatic(wrapper, options);
} else {
that._showPopup(wrapper, options);
}
that.trigger(SHOW, {element: wrapper});
}
return that;
},
info: function(content) {
return this.show(content, INFO);
},
success: function(content) {
return this.show(content, SUCCESS);
},
warning: function(content) {
return this.show(content, WARNING);
},
error: function(content) {
return this.show(content, ERROR);
},
hide: function() {
var that = this,
openedNotifications = that.getNotifications();
if (that.options.appendTo) {
openedNotifications.each(function(idx, element){
that._hideStatic($(element));
});
} else {
openedNotifications.each(function(idx, element){
var popup = $(element).data("kendoPopup");
if (popup) {
popup.close();
}
});
}
return that;
},
getNotifications: function() {
var that = this,
guidElements = $("." + that._guid);
if (that.options.appendTo) {
return guidElements;
} else {
return guidElements.children("." + KNOTIFICATION);
}
},
setOptions: function(newOptions) {
var that = this,
options;
Widget.fn.setOptions.call(that, newOptions);
options = that.options;
if (newOptions.templates !== undefined) {
that._compileTemplates(options.templates);
}
if (newOptions.stacking !== undefined || newOptions.position !== undefined) {
that._compileStacking(options.stacking, options.position.top);
}
},
destroy: function() {
Widget.fn.destroy.call(this);
this.getNotifications().off(NS).find(KICLOSE).off(NS);
}
});
kendo.ui.plugin(Notification);
})(window.kendo.jQuery);
return window.kendo;
}, typeof define == 'function' && define.amd ? define : function(_, f){ f(); }); |
var fs = require('fs'),
path = require('path');
describe('saveScreenshot', function() {
before(h.setup());
var imageSize = {};
it('should take a screenshot and output it on a desired location', function(done) {
var screenshotPath = path.join(__dirname, '..', '..', '..', 'test.png');
this.client
.saveScreenshot(screenshotPath, true)
.call(function() {
fs.exists(screenshotPath, function(fileExists) {
fileExists.should.be.true;
done();
})
});
});
}); |
module.exports = function (grunt) {
grunt.initConfig({
browserify: {
build: {
src: 'test/test.js',
dest: 'test/test.bundle.js'
}
}
})
grunt.loadNpmTasks('grunt-browserify')
grunt.registerTask('default', ['browserify'])
} |
/**
* @author Stéphane ADAM-GARNIER
*/
var currentWin = Titanium.UI.currentWindow;
var homeLabel = Titanium.UI.createLabel({
color:'#999',
height: 30,
top: 20,
text:'Welcome to myGallery App !',
font:{fontSize:20,fontFamily:'Helvetica Neue'},
textAlign:'center',
width:'auto'
});
currentWin.add(homeLabel);
var button = Titanium.UI.createButton({
//top: 200,
height: 200,
width: 200,
title: 'Shoot!'
});
currentWin.add(button);
button.addEventListener('click',function(e)
{
Titanium.API.info("You clicked the button");
showCaptureUI();
});
function showCaptureUI(){
Titanium.Media.showCamera({
success:function(event) {
// called when media returned from the camera
Ti.API.debug('Our type was: '+event.mediaType);
if(event.mediaType == Ti.Media.MEDIA_TYPE_PHOTO) {
var imageView = Ti.UI.createImageView({
width:currentWin.width,
height:currentWin.height,
image:event.media
});
currentWin.add(imageView);
var closeImgViewBtn = Titanium.UI.createButton({
top: 20,
left: 10,
height: 30,
width: 50,
title: 'Close'
});
closeImgViewBtn.addEventListener('click',function(e) {
Titanium.API.info("You clicked the close media button");
imageView.hide();
//closeImgViewBtn.hide();
//currentWin.remove(movieView);
});
imageView.add(closeImgViewBtn);
//closeImgViewBtn.show();
} else if(event.mediaType == Ti.Media.MEDIA_TYPE_VIDEO) {
var movieView = Titanium.Media.createVideoPlayer({
media:event.media,
movieControlStyle: Titanium.Media.VIDEO_CONTROL_EMBEDDED
});
Titanium.Media.saveToPhotoGallery(event.media);
currentWin.add(movieView);
var closeMovieViewBtn = Titanium.UI.createButton({
top: 20,
left: 10,
height: 30,
width: 50,
title: 'Close'
});
closeMovieViewBtn.addEventListener('click',function(e) {
Titanium.API.info("You clicked the close media button");
//movieView.hide();
//closeMovieViewBtn.hide();
currentWin.remove(movieView);
});
movieView.add(closeMovieViewBtn);
//closeMovieViewBtn.show();
} else {
alert("got the wrong type back ="+event.mediaType);
}
},
cancel:function() {
// called when user cancels taking a picture
},
error:function(error) {
// called when there's an error
var a = Titanium.UI.createAlertDialog({title:'Camera'});
if (error.code == Titanium.Media.NO_CAMERA) {
a.setMessage('Please run this test on device');
} else {
a.setMessage('Unexpected error: ' + error.code);
}
a.show();
},
saveToPhotoGallery:true,
allowEditing:false,
mediaTypes:[Ti.Media.MEDIA_TYPE_VIDEO,Ti.Media.MEDIA_TYPE_PHOTO]
});
galleryWin.show();
}
|
define({
"selectLayer": "Vali kokkuvõttekiht",
"filterField": "Kokkuvõttekihi filtri väli",
"count": "KOGUARV",
"sum": "SUM",
"min": "MIN",
"max": "MAX",
"avg": "AVG",
"addField": "Lisa kokkuvõtteväli",
"label": "Silt",
"type": "Tüüp",
"field": "Väljak",
"actions": "Tegevused",
"displayCluster": "Kuva kokkuvõtteklastritena",
"showFeatureCount": "Näita objektide arvu",
"featureCountLabel": "Objektide arvu märgis",
"missingLayerInWebMap": "Palun lisage kokkuvõttekihid veebikaardile."
}); |
var _ = require('lodash');
var uncapitalize = function(str) {
if (!str) {
return str;
}
return str[0].toLowerCase() + str.substring(1);
};
var DEFAULT_CATEGORY = 'query';
module.exports = function(field) {
var as = field.as;
if (as) {
return as;
}
as = uncapitalize(field.type);
if (field.category && field.category !== DEFAULT_CATEGORY) {
as += '_' + field.category
}
return as;
}; |
/*jshint strict: true, esnext: true, node: true*/
"use strict";
class Game {
constructor() {
//
}
init() {
}
act() {
}
}
module.exports = {
Game : Game
};
|
module.exports = {
"ecmaFeatures": {
"arrowFunctions": true,
"binaryLiterals": false,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"destructuring": true,
"forOf": false,
"generators": true,
"modules": true,
"objectLiteralComputedProperties": true,
"objectLiteralDuplicateProperties": false,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"octalLiterals": true,
"regexUFlag": true,
"regexYFlag": true,
"superInFunctions": false,
"templateStrings": true,
"unicodeCodePointEscapes": false,
"globalReturn": false,
"jsx": true
},
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"amd": false,
"mocha": true,
"jasmine": false,
"phantomjs": false,
"prototypejs": false,
"shelljs": false,
"es6": true
},
"rules": {
"no-alert": 2,
"no-array-constructor": 2,
"no-bitwise": 0,
"no-caller": 2,
"no-catch-shadow": 0,
// "no-comma-dangle": 0, // Deprecated in v1.0
"no-cond-assign": 2,
"no-console": 1, // Prefer `debug`
"no-constant-condition": 2,
"no-control-regex": 2,
"no-debugger": 2,
"no-delete-var": 2,
"no-div-regex": 0,
"no-dupe-keys": 2,
"no-dupe-args": 2,
"no-else-return": 0,
"no-empty": 2,
"no-empty-class": 2,
"no-empty-label": 2,
"no-eq-null": 0,
"no-eval": 2,
"no-ex-assign": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-extra-boolean-cast": 2,
"no-extra-parens": 0,
"no-extra-semi": 2,
"no-extra-strict": 2,
"no-fallthrough": 2,
"no-floating-decimal": 0,
"no-func-assign": 2,
"no-implied-eval": 2,
"no-inline-comments": 0,
"no-inner-declarations": [2, "functions"],
"no-invalid-regexp": 2,
"no-irregular-whitespace": 2,
"no-iterator": 2,
"no-label-var": 2,
"no-labels": 2,
"no-lone-blocks": 2,
"no-lonely-if": 0,
"no-loop-func": 2,
"no-mixed-requires": [1, true],
"no-mixed-spaces-and-tabs": [2, false],
"no-multi-spaces": [2, { exceptions: { "VariableDeclarator": true } }],
"no-multi-str": 2,
"no-multiple-empty-lines": [0, {"max": 2}],
"no-native-reassign": 2,
"no-negated-in-lhs": 2,
"no-nested-ternary": 0,
"no-new": 2,
"no-new-func": 2,
"no-new-object": 2,
"no-new-require": 0,
"no-new-wrappers": 2,
"no-obj-calls": 2,
"no-octal": 2,
"no-octal-escape": 2,
"no-path-concat": 0,
"no-plusplus": 0,
"no-process-env": 0,
"no-process-exit": 2,
"no-proto": 2,
"no-redeclare": 2,
"no-regex-spaces": 2,
"no-reserved-keys": 0,
"no-restricted-modules": 0,
"no-return-assign": 2,
"no-script-url": 2,
"no-self-compare": 0,
"no-sequences": 2,
"no-shadow": 0,
"no-shadow-restricted-names": 2,
"no-space-before-semi": 0,
"no-spaced-func": 2,
"no-sparse-arrays": 2,
"no-sync": 0,
"no-ternary": 0,
"no-trailing-spaces": 2,
"no-throw-literal": 0,
"no-undef": 2,
"no-undef-init": 2,
"no-undefined": 0,
"no-underscore-dangle": 2,
"no-unreachable": 2,
"no-unused-expressions": 2,
"no-unused-vars": [1, {"vars": "all", "args": "none"}],
"no-use-before-define": 0,
"no-void": 0,
"no-var": 0,
"no-warning-comments": [0, { "terms": ["todo", "fixme", "xxx"], "location": "start" }],
"no-with": 2,
"no-wrap-func": 2,
"block-scoped-var": 0,
"brace-style": [1, "1tbs"],
"camelcase": 2,
"comma-dangle": [1, "always-multiline"],
"comma-spacing": 2,
"comma-style": 0,
"complexity": [0, 11],
"consistent-return": 2,
"consistent-this": [0, "that"],
"curly": [2, "all"],
"default-case": 0,
"dot-notation": [2, { "allowKeywords": true }],
"eol-last": 2,
"eqeqeq": 2,
"func-names": 0,
"func-style": [0, "declaration"],
"generator-star": 0,
"global-strict": [0, "never"],
"guard-for-in": 0,
"handle-callback-err": [2, "error"],
"indent": [2, 2],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"max-depth": [0, 4],
"max-len": [0, 80, 4],
"max-nested-callbacks": [0, 2],
"max-params": [0, 3],
"max-statements": [0, 10],
"new-cap": 2,
"new-parens": 2,
"one-var": 0,
"operator-assignment": [0, "always"],
"padded-blocks": 0,
"quote-props": 0,
"quotes": [2, "double"],
"radix": 0,
"semi": 2,
"semi-spacing": [2, {"before": false, "after": true}],
"sort-vars": 0,
"space-after-function-name": [2, "never"],
"space-after-keywords": [2, "always"],
"space-before-blocks": [1, "always"],
"space-before-function-paren": [1, "never"],
"space-in-brackets": [1, "never"],
"space-in-parens": [1, "never"],
"space-infix-ops": 2,
"space-return-throw-case": 2,
"space-unary-ops": [2, { "words": true, "nonwords": false }],
"spaced-line-comment": [0, "always"],
"strict": 2,
"use-isnan": 2,
"valid-jsdoc": 0,
"valid-typeof": 2,
"vars-on-top": 0,
"wrap-iife": 0,
"wrap-regex": 0,
"yoda": [2, "never"],
}
};
|
if (typeof exports === 'object') {
var assert = require('assert');
var alasql = require('..');
}
describe('Test 81 - Hierarchies', function () {
// it.skip('localStorage', function(done){
// done();
// });
});
|
const simple = require('./simple')
test('adds 1 and 2 and returns 3', () => {
expect(simple(1, 2)).toBe(3)
})
|
Package.describe({
summary: "Almost i18n, with standard translations for basic meteor packages.",
version: "1.1.0",
name: "softwarerero:accounts-t9n",
git: "https://github.com/softwarerero/meteor-accounts-t9n.git",
});
DEFAULT_LANGUAGES = ['ar', 'zh_cn', 'ca', 'cs', 'da', 'de', 'el', 'en', 'es',
'es_ES', 'fa', 'fr', 'he', 'hr', 'hu', 'id', 'it', 'ja', 'kh', 'pl', 'pt', 'ro',
'ru', 'sl', 'sv', 'tr', 'uk', 'vi', 'no_NB', 'nl', 'zh_tw'];
LANGUAGES = DEFAULT_LANGUAGES;
if(process.env.T9N_LANGUAGES) {
LANGUAGES = process.env.T9N_LANGUAGES.split(',');
}
FILES = ['t9n.coffee'];
for (var i = 0; i < LANGUAGES.length; i++) {
FILES.push('t9n/' + LANGUAGES[i] + '.coffee');
}
Package.on_use(function (api, where) {
if (api.versionsFrom)
api.versionsFrom("METEOR@0.9.0");
api.add_files(FILES, ['client', 'server']);
api.use(['coffeescript', 'deps'], ['client', 'server']);
api.export('T9n', ['client', 'server']);
});
Package.on_test(function (api) {
api.add_files(FILES, ['client', 'server']);
api.use(['coffeescript', 'deps'], ['client', 'server']);
});
|
module.exports = {"Andada":{"bold":"Andada-Bold.ttf","bolditalics":"Andada-BoldItalic.ttf","italics":"Andada-Italic.ttf","normal":"Andada-Regular.ttf"}}; |
var app = angular.module('app', [
'ngCookies',
'ngResource',
'ngSanitize',
// 'btford.socket-io',
'ui.router',
'ui.bootstrap',
'ngAnimate',
'ui.materialize'
]);
(function () {
'use strict';
app.config(function ($stateProvider, $urlRouterProvider, $locationProvider, $httpProvider, $sceDelegateProvider) {
$urlRouterProvider
.otherwise('/home');
$sceDelegateProvider.resourceUrlWhitelist([
// Allow same origin resource loads.
'self',
// Allow loading from our assets domain. Notice the difference between * and **.
'https://www.youtube.com/**'
]);
$locationProvider.html5Mode(true);
$httpProvider.interceptors.push('authInterceptor');
});
app.factory('authInterceptor', function ($rootScope, $q, $cookieStore, $location) {
return {
// Add authorization token to headers
request: function (config) {
config.headers = config.headers || {};
if ($cookieStore.get('token')) {
config.headers.Authorization = 'Bearer ' + $cookieStore.get('token');
}
return config;
},
// Intercept 401s and redirect you to login
responseError: function(response) {
if(response.status === 401) {
$location.path('/login');
// remove any stale tokens
$cookieStore.remove('token');
return $q.reject(response);
}
else {
return $q.reject(response);
}
}
};
});
app.run(function ($rootScope, $location, Auth) {
// Redirect to login if route requires auth and you're not logged in
$rootScope.$on('$stateChangeStart', function (event, next) {
Auth.isLoggedInAsync(function(loggedIn) {
if (next.authenticate && !loggedIn) {
$location.path('/login');
}
});
});
});
}());
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var ic_sort = exports.ic_sort = { "viewBox": "0 0 24 24", "children": [{ "name": "path", "attribs": { "d": "M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z" } }] }; |
var condition={on:function(e,c,a,b){b=b||10;a=a||false;var d=function(){var f=e();if(f){c()}if(!f||!a){setTimeout(d,b)}};d()},pick:function(f,a,d,c){c=c||10;var b="x";var e=function(){var g=f();if(b!=g){b=g;if(g){a()}else{d()}}setTimeout(e,c)};e()},until:function(b,a){a=a||10;var c=function(){if(!b()){setTimeout(c,a)}};c()},force:function(c,a,b){b=b||10;a=a||false;var d=function(){try{c()}catch(e){if(a){console.warn(e)}setTimeout(d,b)}};d()}}; |
nav.factory("Database", [ "$http", "$q", "$log", "Popup", "global", function($http, $q, $log, Popup, global) {
var headers = {
headers : {
'Content-Type' : 'application/json; charset=UTF-8'
}
};
return {
query : function(query) {
var deferred = $q.defer();
$http.get(global.url + "/rest" + query, headers).then(response => {
deferred.resolve(response.data);
}, response => {
deferred.reject(response);
Popup.dbError(response);
$log.error(response);
});
return deferred.promise;
},
queryNoError : function(query) {
var deferred = $q.defer();
$http.get(global.url + "/rest" + query, headers).then(response => {
deferred.resolve(response.data);
}, response => {
deferred.reject(response);
});
return deferred.promise;
},
update : function(query, json) {
var deferred = $q.defer();
$http.post(global.url + "/rest" + query, json,headers).then(response => {
deferred.resolve(response.data);
console.log(response);
}, response => {
deferred.reject(response);
Popup.dbError(response);
$log.error(response);
});
return deferred.promise;
},
updateNoError : function(query, json) {
var deferred = $q.defer();
$http.post(global.url + "/rest" + query, json,headers).then(response => {
deferred.resolve(response.data);
}, response => {
deferred.reject(response);
});
return deferred.promise;
},
pdf : function(json) {
var deferred = $q.defer();
$http({
url : global.url + "/rest/convertpdf",
method : "POST",
responseType : "arraybuffer",
data : json
}).then(response => {
deferred.resolve(response.data);
}, response => {
deferred.reject(response);
Popup.dbError(response);
$log.error(response);
});
return deferred.promise;
}
};
} ]); |
/*
* Copyright (c) 2014 Carl Burch
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
var async = require('async');
var hy_file = require('./hy_file');
function newErrorResponse(value) {
if (value === null) {
return { ok: false, message: 'Unknown error [null]' };
} else if (value === undefined) {
return { ok: false, message: 'Unknown error [undefined]' };
} else if (typeof value === 'string') {
return { ok: false, message: value };
} else if (value.hasOwnProperty('code')) {
return { ok: false, message: value.code };
} else {
console.log('unknown error', value); //OK
return { ok: false, message: 'Unknown error' };
}
}
function getList(req, res) {
var startedItems = {};
var courseTitle;
async.waterfall([
function (next) {
var sql = ('SELECT lessonid, probid FROM problems '
+ 'WHERE course = ? AND ' + req.db.now + ' >= starts');
req.db.forAll(sql, [req.user.course], next);
},
function (rows, next) {
rows.forEach(function (row) {
startedItems[row.lessonid + '/' + row.probid] = true;
});
hy_file.getCourse(req.user.course,
{ course: null, lessons: null }, next);
},
function (course, next) {
if (course.lessons === null) {
next('Did not find course lesson list');
} else {
courseTitle = course.course;
async.map(course.lessons.match(/\S+/g),
function (lessonId, callback) {
loadLessonForIndex(req, lessonId, startedItems, callback);
},
next);
}
},
function (results, next) {
if (!results) {
next('Did not find lesson file');
} else {
res.send({
ok: true,
editor: req.user.editor,
title: courseTitle,
lessons: results.filter(function (result) {
return result !== null;
})
});
}
}
], function (err) {
if (err !== null) {
res.send(newErrorResponse(err));
}
});
}
function loadLessonForIndex(req, lessonId, startedItems, callback) {
var attrs = {
lesson: null,
expires: null,
problems: ''
};
hy_file.getLesson(req.user.course, lessonId, attrs,
function (err, lesson) {
if (err || !lesson || !lesson.lesson) {
var errTitle = 'Unknown';
if (typeof err === 'string') {
errTitle = 'Unknown: ' + err;
}
callback(null, {
lessonId: 'unknown',
title: errTitle,
visible: false,
expired: false
});
} else {
var now = new Date();
var expires = lesson.expires ? new Date(lesson.expires) : now;
var started;
if (lesson.problems) {
var problems = lesson.problems.match(/\S+/g);
started = problems.some(function (p) {
return startedItems.hasOwnProperty(lessonId + '/' + p);
});
} else {
started = true;
}
if (started || req.user.editor) {
callback(null, {
lessonId: lessonId,
title: lesson.lesson,
visible: started,
expired: now >= lesson.expires
});
} else {
callback(null, null);
}
}
});
}
function getLesson(req, res) {
var now = new Date();
var userId = req.user.userId;
var lessonId = req.query.id;
var result = { ok: true, course: req.user.course,
lessonId: lessonId, editor: req.user.editor };
var problemIds;
async.waterfall([
function (next) {
var attrs = {
lesson: null,
expires: now.toISOString(),
problems: ''
};
hy_file.getLesson(req.user.course, lessonId, attrs, next);
},
function (lesson, next) {
problemIds = lesson.problems.match(/\S+/g);
result.title = lesson.lesson;
result.expires = lesson.expires;
async.map(problemIds,
function (problemId, callback) {
loadProblem(req, lessonId, problemId, result.expires, callback);
},
function (err, problems) {
if (!problems) {
next('Did not find problem file');
} else {
result.items = problems;
next(null);
}
});
},
function (next) {
if (problemIds.length === 0) {
next(null, [{ starts: true }]);
} else {
req.db.forAll('SELECT starts FROM problems '
+ 'WHERE course = ? AND lessonid = ? AND probid = ?',
[req.user.course, lessonId, problemIds[0]], next);
}
},
function (rows, next) {
if (rows.length === 0) {
result.started = false;
} else {
result.started = rows[0].starts ? true : false;
}
if (result.started || req.user.editor) {
res.send(result);
} else {
next('Lesson not yet published');
}
}
], function (err) {
if (err !== null) {
res.send(newErrorResponse(err));
}
});
}
function loadProblem(req, lessonId, problemId, lessonExpires, callback) {
var results = {
itemid: problemId,
type: 'problem',
title: 'Untitled',
html: '',
code: ''
};
async.waterfall([
function (next) {
var attrs = {
problem: null,
html: '',
initcode: ''
};
hy_file.getProblem(req.user.course, lessonId, problemId,
attrs, next);
}, function (problem, next) {
if (!problem || !problem.problem) {
results.html = 'Problem file not found'
} else {
results.title = problem.problem;
results.html = problem.html;
results.code = problem.initcode;
}
req.db.forAll('SELECT code FROM solutions '
+ 'WHERE userid = ? AND lessonid = ? AND probid = ?',
[req.user.userId, lessonId, problemId], next);
}, function (solutions, next) {
if (solutions.length > 0) {
results.code = solutions[0].code;
}
req.db.forAll('SELECT showgrades FROM problems '
+ 'WHERE course = ? AND lessonid = ? AND probid = ?',
[req.user.course, lessonId, problemId], next);
}, function (rows, next) {
results.showgrades = rows.length > 0 && rows[0].showgrades ? true : false;
if (results.showgrades) {
req.db.forAll('SELECT grade, comment FROM grades '
+ 'WHERE userid = ? AND lessonid = ? AND probid = ?',
[req.user.userId, lessonId, problemId], next);
} else {
next(null, []);
}
}, function (grades, next) {
if (grades.length > 0) {
results.grade = grades[0].grade;
results.comment = grades[0].comment;
}
if (req.user.editor) {
req.db.forAll('SELECT lastname AS last, firstname AS first, login, verdict '
+ 'FROM users LEFT JOIN '
+ ' (SELECT userid, MAX(verdict) AS verdict '
+ ' FROM submissions WHERE time <= ? '
+ ' GROUP BY userid, lessonid, probid) AS verdicts '
+ ' ON users.userid = verdicts.userid '
+ 'WHERE course = ? AND visible '
+ 'ORDER BY lastname, firstname, login',
[lessonExpires, req.user.course],
next);
} else {
next(null, null);
}
}, function (verdicts, next) {
if (verdicts) {
results.verdicts = verdicts;
}
callback(null, results);
}
], function (err) {
callback(err, null);
});
}
function setStarted(req, res) {
var userId = req.user.userId;
var lessonId = req.body.id;
var started = req.body.value && req.body.value !== 'false';
async.waterfall([
function (next) {
hy_file.getLesson(req.user.course, lessonId,
{ problems: '' }, next);
},
function (lesson, next) {
var problemIds = lesson.problems.match(/\S+/g);
if (problemIds.length === 0) {
next('Lesson contains no problems');
} else {
var value = started ? req.db.now : 'NULL';
async.each(problemIds,
function (problemId, callback) {
req.db.execute('REPLACE INTO problems '
+ '(course, lessonid, probid, starts) '
+ 'VALUES (?, ?, ?, ' + value + ')',
[req.user.course, lessonId, problemId], callback);
},
next);
}
},
function (next) {
res.send({ ok: true });
}
], function (err) {
if (err !== null) {
res.send(newErrorResponse(err));
}
});
}
exports.getList = getList;
exports.getLesson = getLesson;
exports.setStarted = setStarted;
|
import React, { Component } from 'react';
import {
View,
Text,
} from 'react-native';
import IconBadge from 'react-native-icon-badge';
import TabBarIcon from './TabBarIcon';
class BilheteTabBarIcon extends Component {
render() {
let { qtdPalpites } = this.props;
if(qtdPalpites === 0 )
return (
<TabBarIcon {...this.props} />
)
return (
<IconBadge
MainElement={<TabBarIcon {...this.props} /> }
BadgeElement={<Text>{qtdPalpites}</Text>} />
);
}
}
export default BilheteTabBarIcon
|
(function(){var ImagePicker,ImagePickerOption,both_array_are_equal,sanitized_options,__bind=function(fn,me){return function(){return fn.apply(me,arguments)}},__indexOf=[].indexOf||function(item){for(var i=0,l=this.length;i<l;i++)if(i in this&&this[i]===item)return i;return-1};jQuery.fn.extend({imagepicker:function(opts){if(opts==null)opts={};return this.each(function(){var select;select=jQuery(this);if(select.data("picker"))select.data("picker").destroy();select.data("picker",new ImagePicker(this,
sanitized_options(opts)));if(opts.initialized!=null)return opts.initialized.call(select.data("picker"))})}});sanitized_options=function(opts){var default_options;default_options={hide_select:true,show_label:false,initialized:void 0,changed:void 0,clicked:void 0,selected:void 0,limit:void 0,limit_reached:void 0};return jQuery.extend(default_options,opts)};both_array_are_equal=function(a,b){return jQuery(a).not(b).length===0&&jQuery(b).not(a).length===0};ImagePicker=function(){function ImagePicker(select_element,
opts){this.opts=opts!=null?opts:{};this.sync_picker_with_select=__bind(this.sync_picker_with_select,this);this.select=jQuery(select_element);this.multiple=this.select.attr("multiple")==="multiple";if(this.select.data("limit")!=null)this.opts.limit=parseInt(this.select.data("limit"));this.build_and_append_picker()}ImagePicker.prototype.destroy=function(){var option,_i,_len,_ref;_ref=this.picker_options;for(_i=0,_len=_ref.length;_i<_len;_i++){option=_ref[_i];option.destroy()}this.picker.remove();this.select.unbind("change");
this.select.removeData("picker");return this.select.show()};ImagePicker.prototype.build_and_append_picker=function(){var _this=this;if(this.opts.hide_select)this.select.hide();this.select.change(function(){return _this.sync_picker_with_select()});if(this.picker!=null)this.picker.remove();this.create_picker();this.select.after(this.picker);return this.sync_picker_with_select()};ImagePicker.prototype.sync_picker_with_select=function(){var option,_i,_len,_ref,_results;_ref=this.picker_options;_results=
[];for(_i=0,_len=_ref.length;_i<_len;_i++){option=_ref[_i];if(option.is_selected())_results.push(option.mark_as_selected());else _results.push(option.unmark_as_selected())}return _results};ImagePicker.prototype.create_picker=function(){this.picker=jQuery("<ul class='thumbnails image_picker_selector'></ul>");this.picker_options=[];this.recursively_parse_option_groups(this.select,this.picker);return this.picker};ImagePicker.prototype.recursively_parse_option_groups=function(scoped_dom,target_container){var container,
option,option_group,_i,_j,_len,_len1,_ref,_ref1,_results;_ref=scoped_dom.children("optgroup");for(_i=0,_len=_ref.length;_i<_len;_i++){option_group=_ref[_i];option_group=jQuery(option_group);container=jQuery("<ul></ul>");container.append(jQuery("<li class='group_title'>"+option_group.attr("label")+"</li>"));target_container.append(jQuery("<li>").append(container));this.recursively_parse_option_groups(option_group,container)}_ref1=function(){var _k,_len1,_ref1,_results1;_ref1=scoped_dom.children("option");
_results1=[];for(_k=0,_len1=_ref1.length;_k<_len1;_k++){option=_ref1[_k];_results1.push(new ImagePickerOption(option,this,this.opts))}return _results1}.call(this);_results=[];for(_j=0,_len1=_ref1.length;_j<_len1;_j++){option=_ref1[_j];this.picker_options.push(option);if(!option.has_image())continue;_results.push(target_container.append(option.node))}return _results};ImagePicker.prototype.has_implicit_blanks=function(){var option;return function(){var _i,_len,_ref,_results;_ref=this.picker_options;
_results=[];for(_i=0,_len=_ref.length;_i<_len;_i++){option=_ref[_i];if(option.is_blank()&&!option.has_image())_results.push(option)}return _results}.call(this).length>0};ImagePicker.prototype.selected_values=function(){if(this.multiple)return this.select.val()||[];else return[this.select.val()]};ImagePicker.prototype.toggle=function(imagepicker_option){var new_values,old_values,selected_value;old_values=this.selected_values();selected_value=imagepicker_option.value().toString();if(this.multiple)if(__indexOf.call(this.selected_values(),
selected_value)>=0){new_values=this.selected_values();new_values.splice(jQuery.inArray(selected_value,old_values),1);this.select.val([]);this.select.val(new_values)}else if(this.opts.limit!=null&&this.selected_values().length>=this.opts.limit){if(this.opts.limit_reached!=null)this.opts.limit_reached.call(this.select)}else this.select.val(this.selected_values().concat(selected_value));else if(this.has_implicit_blanks()&&imagepicker_option.is_selected())this.select.val("");else this.select.val(selected_value);
if(!both_array_are_equal(old_values,this.selected_values())){this.select.change();if(this.opts.changed!=null)return this.opts.changed.call(this.select,old_values,this.selected_values())}};return ImagePicker}();ImagePickerOption=function(){function ImagePickerOption(option_element,picker,opts){this.picker=picker;this.opts=opts!=null?opts:{};this.clicked=__bind(this.clicked,this);this.option=jQuery(option_element);this.create_node()}ImagePickerOption.prototype.destroy=function(){return this.node.find(".thumbnail").unbind()};
ImagePickerOption.prototype.has_image=function(){return this.option.data("img-src")!=null};ImagePickerOption.prototype.is_blank=function(){return!(this.value()!=null&&this.value()!=="")};ImagePickerOption.prototype.is_selected=function(){var select_value;select_value=this.picker.select.val();if(this.picker.multiple)return jQuery.inArray(this.value(),select_value)>=0;else return this.value()===select_value};ImagePickerOption.prototype.mark_as_selected=function(){return this.node.find(".thumbnail").addClass("selected")};
ImagePickerOption.prototype.unmark_as_selected=function(){return this.node.find(".thumbnail").removeClass("selected")};ImagePickerOption.prototype.value=function(){return this.option.val()};ImagePickerOption.prototype.label=function(){if(this.option.data("img-label"))return this.option.data("img-label");else return this.option.text()};ImagePickerOption.prototype.clicked=function(){this.picker.toggle(this);if(this.opts.clicked!=null)this.opts.clicked.call(this.picker.select,this);if(this.opts.selected!=
null&&this.is_selected())return this.opts.selected.call(this.picker.select,this)};ImagePickerOption.prototype.create_node=function(){var image,thumbnail;this.node=jQuery("<li/>");image=jQuery("<img class='image_picker_image'/>");image.attr("src",this.option.data("img-src"));thumbnail=jQuery("<div class='thumbnail'>");thumbnail.click({option:this},function(event){return event.data.option.clicked()});thumbnail.append(image);if(this.opts.show_label)thumbnail.append(jQuery("<p/>").html(this.label()));
this.node.append(thumbnail);return this.node};return ImagePickerOption}()}).call(this);
|
/* Esperanto initialisation for the jQuery UI date picker plugin. */
/* Written by Olivier M. (olivierweb@ifrance.com). */
jQuery(function($){
$.datepicker.regional['eo'] = {
closeText: 'Fermi',
prevText: '<Anta',
nextText: 'Sekv>',
currentText: 'Nuna',
monthNames: ['Januaro','Februaro','Marto','Aprilo','Majo','Junio',
'Julio','Aŭgusto','Septembro','Oktobro','Novembro','Decembro'],
monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
'Jul','Aŭg','Sep','Okt','Nov','Dec'],
dayNames: ['Dimanĉo','Lundo','Mardo','Merkredo','Ĵaŭdo','Vendredo','Sabato'],
dayNamesShort: ['Dim','Lun','Mar','Mer','Ĵaŭ','Ven','Sab'],
dayNamesMin: ['Di','Lu','Ma','Me','Ĵa','Ve','Sa'],
weekHeader: 'Sb',
dateFormat: 'dd/mm/yy',
firstDay: 0,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: ''};
// $.datepicker.setDefaults($.datepicker.regional['eo']);
});
|
module.exports = function(config) {
var appBase = 'app/'; // transpiled app JS and map files
var appSrcBase = 'app/'; // app source TS files
var appAssets = '/base/app/'; // component assets fetched by Angular's compiler
var appBase = 'src/'; // transpiled app JS and map files
var appSrcBase = appBase; // app source TS files
// Testing helpers (optional) are conventionally in a folder called `testing`
var testingBase = 'testing/'; // transpiled test JS and map files
var testingSrcBase = 'testing/'; // test source TS files
config.set({
basePath: '',
frameworks: ['jasmine'],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter')
],
client: {
builtPaths: [appBase, testingBase], // add more spec base paths as needed
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
customLaunchers: {
// From the CLI. Not used here but interesting
// chrome setup for travis CI using chromium
Chrome_travis_ci: {
base: 'Chrome',
flags: ['--no-sandbox']
}
},
files: [
// System.js for module loading
'node_modules/systemjs/dist/system.src.js',
// Polyfills
'node_modules/core-js/client/shim.js',
// zone.js
'node_modules/zone.js/dist/zone.js',
'node_modules/zone.js/dist/long-stack-trace-zone.js',
'node_modules/zone.js/dist/proxy.js',
'node_modules/zone.js/dist/sync-test.js',
'node_modules/zone.js/dist/jasmine-patch.js',
'node_modules/zone.js/dist/async-test.js',
'node_modules/zone.js/dist/fake-async-test.js',
// RxJs
{ pattern: 'node_modules/rxjs/**/*.js', included: false, watched: false },
{ pattern: 'node_modules/rxjs/**/*.js.map', included: false, watched: false },
// Paths loaded via module imports:
// Angular itself
{ pattern: 'node_modules/@angular/**/*.js', included: false, watched: false },
{ pattern: 'node_modules/@angular/**/*.js.map', included: false, watched: false },
{ pattern: appBase + '/systemjs.config.js', included: false, watched: false },
{ pattern: appBase + '/systemjs.config.extras.js', included: false, watched: false },
'karma-test-shim.js', // optionally extend SystemJS mapping e.g., with barrels
// transpiled application & spec code paths loaded via module imports
{ pattern: appBase + '**/*.js', included: false, watched: true },
{ pattern: testingBase + '**/*.js', included: false, watched: true },
// Asset (HTML & CSS) paths loaded via Angular's component compiler
// (these paths need to be rewritten, see proxies section)
{ pattern: appBase + '**/*.html', included: false, watched: true },
{ pattern: appBase + '**/*.css', included: false, watched: true },
// Paths for debugging with source maps in dev tools
{ pattern: appBase + '**/*.ts', included: false, watched: false },
{ pattern: appBase + '**/*.js.map', included: false, watched: false },
{ pattern: testingSrcBase + '**/*.ts', included: false, watched: false },
{ pattern: testingBase + '**/*.js.map', included: false, watched: false}
],
// Proxied base paths for loading assets
proxies: {
// required for modules fetched by SystemJS
'/base/src/node_modules/': '/base/node_modules/'
},
exclude: [],
preprocessors: {},
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
})
}
|
goog.provide('crow.Algorithm');
goog.require('crow.structs.BucketPriorityQueue');
/**
* Base class for all algorithms.
* @constructor
* @private
*/
crow.Algorithm = function(){};
crow.Algorithm.wrapperNodeGetterTemplate = function(klass){
return function(node){
if(node instanceof klass) return node;
var w = this.wrapperNode.get(node);
if(w) return w;
w = new klass(node);
w.algorithm = this;
this.wrapperNode.set(node, w);
return w;
};
};
crow.Algorithm.prototype._invalidatePoint = function(path, invalidationEvent){
var x = invalidationEvent.x, y = invalidationEvent.y;
for(var i = 0; i < path.nodes.length; i++){
var n = path.nodes[i];
if(n.x == x && n.y == y){
// Invalidating a point in the middle means we need to start over
path.nodes = path.nodes.slice(0, 1);
path.end = null;
path.found = false;
break;
}
}
};
crow.Algorithm.prototype._invalidateRegion = function(path, invalidationEvent){
var x = invalidationEvent.x, y = invalidationEvent.y;
var x2 = x + invalidationEvent.dx, y2 = y + invalidationEvent.dy;
for(var i = 0; i < path.nodes.length; i++){
var n = path.nodes[i];
var nx = n.x, ny = n.y;
if(nx >= x && ny >= y && nx < x2 && ny < y2){
path.nodes = path.nodes.slice(0, 1);
path.end = null;
path.found = false;
break;
}
}
};
crow.Algorithm.prototype.continueCalculating = function(path, count){
var lastNode = path.nodes[path.nodes.length-1];
// if the path was never complete, there may not be any nodes
if(!lastNode) lastNode = path.start;
var opts = {};
if(count) opts.limit = count;
if(path.actor) opts.actor = path.actor;
var continuedPath = this.findPath(lastNode, path.goal, opts);
// TODO this node list needs to be pruned, in case continuedPath contains a node in this;
// in other words, if the continuedPath backtracks along the current path
path.nodes = path.nodes.concat(continuedPath.nodes.slice(1)),
path.found = continuedPath.found;
return path.found;
}
/**
* A map from nodes (using their hash) to arbitrary values
* @constructor
* @param {*} [defaultValue] The default value for a node when retrieving it if there's no value associated with it
*/
crow.Algorithm.NodeMap = function(defaultValue){
var map = {};
/**
* Returns the value set for this node. If there is no value,
* then return the default value defined when creating the NodeMap.
* @param node The node to retrieve the value for
* @returns value or the default value
*/
this.get = function(node){
var val = map[node.id];
return typeof val !== "undefined" ? val : defaultValue;
};
/**
* Set a value for this node in the map.
* @param node The node to set the value for
* @param value The value to set for the node
*/
this.set = function(node, val){
map[node.id] = val;
};
};
/**
* A priority queue with an API that matches that of Google Closure's priority queue.
* @see http://closure-library.googlecode.com/svn/docs/class_goog_structs_PriorityQueue.html
* @constructor
*/
crow.Algorithm.PriorityQueue = function(){
throw new Error("A PriorityQueue class is required, but none found!");
};
/**
* One-time initialization of data structure classes used by Crow.
* @private
*/
crow.Algorithm.initializeDataStructures = function(){
crow.Algorithm.PriorityQueue = crow.structs.BucketPriorityQueue;
crow.Algorithm.initializeDataStructures = function(){};
};
|
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
/*!
* Bootstrap v3.2.0 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') }
/* ========================================================================
* Bootstrap: transition.js v3.2.0
* http://getbootstrap.com/javascript/#transitions
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
// ============================================================
function transitionEnd() {
var el = document.createElement('bootstrap')
var transEndEventNames = {
WebkitTransition : 'webkitTransitionEnd',
MozTransition : 'transitionend',
OTransition : 'oTransitionEnd otransitionend',
transition : 'transitionend'
}
for (var name in transEndEventNames) {
if (el.style[name] !== undefined) {
return { end: transEndEventNames[name] }
}
}
return false // explicit for ie8 ( ._.)
}
// http://blog.alexmaccaw.com/css-transitions
$.fn.emulateTransitionEnd = function (duration) {
var called = false
var $el = this
$(this).one('bsTransitionEnd', function () { called = true })
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
setTimeout(callback, duration)
return this
}
$(function () {
$.support.transition = transitionEnd()
if (!$.support.transition) return
$.event.special.bsTransitionEnd = {
bindType: $.support.transition.end,
delegateType: $.support.transition.end,
handle: function (e) {
if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
}
}
})
}(jQuery);
/* ========================================================================
* Bootstrap: alert.js v3.2.0
* http://getbootstrap.com/javascript/#alerts
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// ALERT CLASS DEFINITION
// ======================
var dismiss = '[data-dismiss="alert"]'
var Alert = function (el) {
$(el).on('click', dismiss, this.close)
}
Alert.VERSION = '3.2.0'
Alert.prototype.close = function (e) {
var $this = $(this)
var selector = $this.attr('data-target')
if (!selector) {
selector = $this.attr('href')
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
}
var $parent = $(selector)
if (e) e.preventDefault()
if (!$parent.length) {
$parent = $this.hasClass('alert') ? $this : $this.parent()
}
$parent.trigger(e = $.Event('close.bs.alert'))
if (e.isDefaultPrevented()) return
$parent.removeClass('in')
function removeElement() {
// detach from parent, fire event then clean up data
$parent.detach().trigger('closed.bs.alert').remove()
}
$.support.transition && $parent.hasClass('fade') ?
$parent
.one('bsTransitionEnd', removeElement)
.emulateTransitionEnd(150) :
removeElement()
}
// ALERT PLUGIN DEFINITION
// =======================
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.alert')
if (!data) $this.data('bs.alert', (data = new Alert(this)))
if (typeof option == 'string') data[option].call($this)
})
}
var old = $.fn.alert
$.fn.alert = Plugin
$.fn.alert.Constructor = Alert
// ALERT NO CONFLICT
// =================
$.fn.alert.noConflict = function () {
$.fn.alert = old
return this
}
// ALERT DATA-API
// ==============
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
}(jQuery);
/* ========================================================================
* Bootstrap: button.js v3.2.0
* http://getbootstrap.com/javascript/#buttons
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// BUTTON PUBLIC CLASS DEFINITION
// ==============================
var Button = function (element, options) {
this.$element = $(element)
this.options = $.extend({}, Button.DEFAULTS, options)
this.isLoading = false
}
Button.VERSION = '3.2.0'
Button.DEFAULTS = {
loadingText: 'loading...'
}
Button.prototype.setState = function (state) {
var d = 'disabled'
var $el = this.$element
var val = $el.is('input') ? 'val' : 'html'
var data = $el.data()
state = state + 'Text'
if (data.resetText == null) $el.data('resetText', $el[val]())
$el[val](data[state] == null ? this.options[state] : data[state])
// push to event loop to allow forms to submit
setTimeout($.proxy(function () {
if (state == 'loadingText') {
this.isLoading = true
$el.addClass(d).attr(d, d)
} else if (this.isLoading) {
this.isLoading = false
$el.removeClass(d).removeAttr(d)
}
}, this), 0)
}
Button.prototype.toggle = function () {
var changed = true
var $parent = this.$element.closest('[data-toggle="buttons"]')
if ($parent.length) {
var $input = this.$element.find('input')
if ($input.prop('type') == 'radio') {
if ($input.prop('checked') && this.$element.hasClass('active')) changed = false
else $parent.find('.active').removeClass('active')
}
if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
}
if (changed) this.$element.toggleClass('active')
}
// BUTTON PLUGIN DEFINITION
// ========================
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.button')
var options = typeof option == 'object' && option
if (!data) $this.data('bs.button', (data = new Button(this, options)))
if (option == 'toggle') data.toggle()
else if (option) data.setState(option)
})
}
var old = $.fn.button
$.fn.button = Plugin
$.fn.button.Constructor = Button
// BUTTON NO CONFLICT
// ==================
$.fn.button.noConflict = function () {
$.fn.button = old
return this
}
// BUTTON DATA-API
// ===============
$(document).on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
var $btn = $(e.target)
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
Plugin.call($btn, 'toggle')
e.preventDefault()
})
}(jQuery);
/* ========================================================================
* Bootstrap: carousel.js v3.2.0
* http://getbootstrap.com/javascript/#carousel
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// CAROUSEL CLASS DEFINITION
// =========================
var Carousel = function (element, options) {
this.$element = $(element).on('keydown.bs.carousel', $.proxy(this.keydown, this))
this.$indicators = this.$element.find('.carousel-indicators')
this.options = options
this.paused =
this.sliding =
this.interval =
this.$active =
this.$items = null
this.options.pause == 'hover' && this.$element
.on('mouseenter.bs.carousel', $.proxy(this.pause, this))
.on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
}
Carousel.VERSION = '3.2.0'
Carousel.DEFAULTS = {
interval: 5000,
pause: 'hover',
wrap: true
}
Carousel.prototype.keydown = function (e) {
switch (e.which) {
case 37: this.prev(); break
case 39: this.next(); break
default: return
}
e.preventDefault()
}
Carousel.prototype.cycle = function (e) {
e || (this.paused = false)
this.interval && clearInterval(this.interval)
this.options.interval
&& !this.paused
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
return this
}
Carousel.prototype.getItemIndex = function (item) {
this.$items = item.parent().children('.item')
return this.$items.index(item || this.$active)
}
Carousel.prototype.to = function (pos) {
var that = this
var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
if (pos > (this.$items.length - 1) || pos < 0) return
if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
if (activeIndex == pos) return this.pause().cycle()
return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
}
Carousel.prototype.pause = function (e) {
e || (this.paused = true)
if (this.$element.find('.next, .prev').length && $.support.transition) {
this.$element.trigger($.support.transition.end)
this.cycle(true)
}
this.interval = clearInterval(this.interval)
return this
}
Carousel.prototype.next = function () {
if (this.sliding) return
return this.slide('next')
}
Carousel.prototype.prev = function () {
if (this.sliding) return
return this.slide('prev')
}
Carousel.prototype.slide = function (type, next) {
var $active = this.$element.find('.item.active')
var $next = next || $active[type]()
var isCycling = this.interval
var direction = type == 'next' ? 'left' : 'right'
var fallback = type == 'next' ? 'first' : 'last'
var that = this
if (!$next.length) {
if (!this.options.wrap) return
$next = this.$element.find('.item')[fallback]()
}
if ($next.hasClass('active')) return (this.sliding = false)
var relatedTarget = $next[0]
var slideEvent = $.Event('slide.bs.carousel', {
relatedTarget: relatedTarget,
direction: direction
})
this.$element.trigger(slideEvent)
if (slideEvent.isDefaultPrevented()) return
this.sliding = true
isCycling && this.pause()
if (this.$indicators.length) {
this.$indicators.find('.active').removeClass('active')
var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
$nextIndicator && $nextIndicator.addClass('active')
}
var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
if ($.support.transition && this.$element.hasClass('slide')) {
$next.addClass(type)
$next[0].offsetWidth // force reflow
$active.addClass(direction)
$next.addClass(direction)
$active
.one('bsTransitionEnd', function () {
$next.removeClass([type, direction].join(' ')).addClass('active')
$active.removeClass(['active', direction].join(' '))
that.sliding = false
setTimeout(function () {
that.$element.trigger(slidEvent)
}, 0)
})
.emulateTransitionEnd($active.css('transition-duration').slice(0, -1) * 1000)
} else {
$active.removeClass('active')
$next.addClass('active')
this.sliding = false
this.$element.trigger(slidEvent)
}
isCycling && this.cycle()
return this
}
// CAROUSEL PLUGIN DEFINITION
// ==========================
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.carousel')
var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
var action = typeof option == 'string' ? option : options.slide
if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
if (typeof option == 'number') data.to(option)
else if (action) data[action]()
else if (options.interval) data.pause().cycle()
})
}
var old = $.fn.carousel
$.fn.carousel = Plugin
$.fn.carousel.Constructor = Carousel
// CAROUSEL NO CONFLICT
// ====================
$.fn.carousel.noConflict = function () {
$.fn.carousel = old
return this
}
// CAROUSEL DATA-API
// =================
$(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
var href
var $this = $(this)
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
if (!$target.hasClass('carousel')) return
var options = $.extend({}, $target.data(), $this.data())
var slideIndex = $this.attr('data-slide-to')
if (slideIndex) options.interval = false
Plugin.call($target, options)
if (slideIndex) {
$target.data('bs.carousel').to(slideIndex)
}
e.preventDefault()
})
$(window).on('load', function () {
$('[data-ride="carousel"]').each(function () {
var $carousel = $(this)
Plugin.call($carousel, $carousel.data())
})
})
}(jQuery);
/* ========================================================================
* Bootstrap: collapse.js v3.2.0
* http://getbootstrap.com/javascript/#collapse
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// COLLAPSE PUBLIC CLASS DEFINITION
// ================================
var Collapse = function (element, options) {
this.$element = $(element)
this.options = $.extend({}, Collapse.DEFAULTS, options)
this.transitioning = null
if (this.options.parent) this.$parent = $(this.options.parent)
if (this.options.toggle) this.toggle()
}
Collapse.VERSION = '3.2.0'
Collapse.DEFAULTS = {
toggle: true
}
Collapse.prototype.dimension = function () {
var hasWidth = this.$element.hasClass('width')
return hasWidth ? 'width' : 'height'
}
Collapse.prototype.show = function () {
if (this.transitioning || this.$element.hasClass('in')) return
var startEvent = $.Event('show.bs.collapse')
this.$element.trigger(startEvent)
if (startEvent.isDefaultPrevented()) return
var actives = this.$parent && this.$parent.find('> .panel > .in')
if (actives && actives.length) {
var hasData = actives.data('bs.collapse')
if (hasData && hasData.transitioning) return
Plugin.call(actives, 'hide')
hasData || actives.data('bs.collapse', null)
}
var dimension = this.dimension()
this.$element
.removeClass('collapse')
.addClass('collapsing')[dimension](0)
this.transitioning = 1
var complete = function () {
this.$element
.removeClass('collapsing')
.addClass('collapse in')[dimension]('')
this.transitioning = 0
this.$element
.trigger('shown.bs.collapse')
}
if (!$.support.transition) return complete.call(this)
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
this.$element
.one('bsTransitionEnd', $.proxy(complete, this))
.emulateTransitionEnd(350)[dimension](this.$element[0][scrollSize])
}
Collapse.prototype.hide = function () {
if (this.transitioning || !this.$element.hasClass('in')) return
var startEvent = $.Event('hide.bs.collapse')
this.$element.trigger(startEvent)
if (startEvent.isDefaultPrevented()) return
var dimension = this.dimension()
this.$element[dimension](this.$element[dimension]())[0].offsetHeight
this.$element
.addClass('collapsing')
.removeClass('collapse')
.removeClass('in')
this.transitioning = 1
var complete = function () {
this.transitioning = 0
this.$element
.trigger('hidden.bs.collapse')
.removeClass('collapsing')
.addClass('collapse')
}
if (!$.support.transition) return complete.call(this)
this.$element
[dimension](0)
.one('bsTransitionEnd', $.proxy(complete, this))
.emulateTransitionEnd(350)
}
Collapse.prototype.toggle = function () {
this[this.$element.hasClass('in') ? 'hide' : 'show']()
}
// COLLAPSE PLUGIN DEFINITION
// ==========================
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.collapse')
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
if (!data && options.toggle && option == 'show') option = !option
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
if (typeof option == 'string') data[option]()
})
}
var old = $.fn.collapse
$.fn.collapse = Plugin
$.fn.collapse.Constructor = Collapse
// COLLAPSE NO CONFLICT
// ====================
$.fn.collapse.noConflict = function () {
$.fn.collapse = old
return this
}
// COLLAPSE DATA-API
// =================
$(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
var href
var $this = $(this)
var target = $this.attr('data-target')
|| e.preventDefault()
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
var $target = $(target)
var data = $target.data('bs.collapse')
var option = data ? 'toggle' : $this.data()
var parent = $this.attr('data-parent')
var $parent = parent && $(parent)
if (!data || !data.transitioning) {
if ($parent) $parent.find('[data-toggle="collapse"][data-parent="' + parent + '"]').not($this).addClass('collapsed')
$this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
}
Plugin.call($target, option)
})
}(jQuery);
/* ========================================================================
* Bootstrap: dropdown.js v3.2.0
* http://getbootstrap.com/javascript/#dropdowns
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// DROPDOWN CLASS DEFINITION
// =========================
var backdrop = '.dropdown-backdrop'
var toggle = '[data-toggle="dropdown"]'
var Dropdown = function (element) {
$(element).on('click.bs.dropdown', this.toggle)
}
Dropdown.VERSION = '3.2.0'
Dropdown.prototype.toggle = function (e) {
var $this = $(this)
if ($this.is('.disabled, :disabled')) return
var $parent = getParent($this)
var isActive = $parent.hasClass('open')
clearMenus()
if (!isActive) {
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
// if mobile we use a backdrop because click events don't delegate
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
}
var relatedTarget = { relatedTarget: this }
$parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
if (e.isDefaultPrevented()) return
$this.trigger('focus')
$parent
.toggleClass('open')
.trigger('shown.bs.dropdown', relatedTarget)
}
return false
}
Dropdown.prototype.keydown = function (e) {
if (!/(38|40|27)/.test(e.keyCode)) return
var $this = $(this)
e.preventDefault()
e.stopPropagation()
if ($this.is('.disabled, :disabled')) return
var $parent = getParent($this)
var isActive = $parent.hasClass('open')
if (!isActive || (isActive && e.keyCode == 27)) {
if (e.which == 27) $parent.find(toggle).trigger('focus')
return $this.trigger('click')
}
var desc = ' li:not(.divider):visible a'
var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc)
if (!$items.length) return
var index = $items.index($items.filter(':focus'))
if (e.keyCode == 38 && index > 0) index-- // up
if (e.keyCode == 40 && index < $items.length - 1) index++ // down
if (!~index) index = 0
$items.eq(index).trigger('focus')
}
function clearMenus(e) {
if (e && e.which === 3) return
$(backdrop).remove()
$(toggle).each(function () {
var $parent = getParent($(this))
var relatedTarget = { relatedTarget: this }
if (!$parent.hasClass('open')) return
$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
if (e.isDefaultPrevented()) return
$parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
})
}
function getParent($this) {
var selector = $this.attr('data-target')
if (!selector) {
selector = $this.attr('href')
selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
}
var $parent = selector && $(selector)
return $parent && $parent.length ? $parent : $this.parent()
}
// DROPDOWN PLUGIN DEFINITION
// ==========================
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.dropdown')
if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
if (typeof option == 'string') data[option].call($this)
})
}
var old = $.fn.dropdown
$.fn.dropdown = Plugin
$.fn.dropdown.Constructor = Dropdown
// DROPDOWN NO CONFLICT
// ====================
$.fn.dropdown.noConflict = function () {
$.fn.dropdown = old
return this
}
// APPLY TO STANDARD DROPDOWN ELEMENTS
// ===================================
$(document)
.on('click.bs.dropdown.data-api', clearMenus)
.on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
.on('keydown.bs.dropdown.data-api', toggle + ', [role="menu"], [role="listbox"]', Dropdown.prototype.keydown)
}(jQuery);
/* ========================================================================
* Bootstrap: modal.js v3.2.0
* http://getbootstrap.com/javascript/#modals
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// MODAL CLASS DEFINITION
// ======================
var Modal = function (element, options) {
this.options = options
this.$body = $(document.body)
this.$element = $(element)
this.$backdrop =
this.isShown = null
this.scrollbarWidth = 0
if (this.options.remote) {
this.$element
.find('.modal-content')
.load(this.options.remote, $.proxy(function () {
this.$element.trigger('loaded.bs.modal')
}, this))
}
}
Modal.VERSION = '3.2.0'
Modal.DEFAULTS = {
backdrop: true,
keyboard: true,
show: true
}
Modal.prototype.toggle = function (_relatedTarget) {
return this.isShown ? this.hide() : this.show(_relatedTarget)
}
Modal.prototype.show = function (_relatedTarget) {
var that = this
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
this.$element.trigger(e)
if (this.isShown || e.isDefaultPrevented()) return
this.isShown = true
this.checkScrollbar()
this.$body.addClass('modal-open')
this.setScrollbar()
this.escape()
this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
this.backdrop(function () {
var transition = $.support.transition && that.$element.hasClass('fade')
if (!that.$element.parent().length) {
that.$element.appendTo(that.$body) // don't move modals dom position
}
that.$element
.show()
.scrollTop(0)
if (transition) {
that.$element[0].offsetWidth // force reflow
}
that.$element
.addClass('in')
.attr('aria-hidden', false)
that.enforceFocus()
var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
transition ?
that.$element.find('.modal-dialog') // wait for modal to slide in
.one('bsTransitionEnd', function () {
that.$element.trigger('focus').trigger(e)
})
.emulateTransitionEnd(300) :
that.$element.trigger('focus').trigger(e)
})
}
Modal.prototype.hide = function (e) {
if (e) e.preventDefault()
e = $.Event('hide.bs.modal')
this.$element.trigger(e)
if (!this.isShown || e.isDefaultPrevented()) return
this.isShown = false
this.$body.removeClass('modal-open')
this.resetScrollbar()
this.escape()
$(document).off('focusin.bs.modal')
this.$element
.removeClass('in')
.attr('aria-hidden', true)
.off('click.dismiss.bs.modal')
$.support.transition && this.$element.hasClass('fade') ?
this.$element
.one('bsTransitionEnd', $.proxy(this.hideModal, this))
.emulateTransitionEnd(300) :
this.hideModal()
}
Modal.prototype.enforceFocus = function () {
$(document)
.off('focusin.bs.modal') // guard against infinite focus loop
.on('focusin.bs.modal', $.proxy(function (e) {
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
this.$element.trigger('focus')
}
}, this))
}
Modal.prototype.escape = function () {
if (this.isShown && this.options.keyboard) {
this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
e.which == 27 && this.hide()
}, this))
} else if (!this.isShown) {
this.$element.off('keyup.dismiss.bs.modal')
}
}
Modal.prototype.hideModal = function () {
var that = this
this.$element.hide()
this.backdrop(function () {
that.$element.trigger('hidden.bs.modal')
})
}
Modal.prototype.removeBackdrop = function () {
this.$backdrop && this.$backdrop.remove()
this.$backdrop = null
}
Modal.prototype.backdrop = function (callback) {
var that = this
var animate = this.$element.hasClass('fade') ? 'fade' : ''
if (this.isShown && this.options.backdrop) {
var doAnimate = $.support.transition && animate
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
.appendTo(this.$body)
this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
if (e.target !== e.currentTarget) return
this.options.backdrop == 'static'
? this.$element[0].focus.call(this.$element[0])
: this.hide.call(this)
}, this))
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
this.$backdrop.addClass('in')
if (!callback) return
doAnimate ?
this.$backdrop
.one('bsTransitionEnd', callback)
.emulateTransitionEnd(150) :
callback()
} else if (!this.isShown && this.$backdrop) {
this.$backdrop.removeClass('in')
var callbackRemove = function () {
that.removeBackdrop()
callback && callback()
}
$.support.transition && this.$element.hasClass('fade') ?
this.$backdrop
.one('bsTransitionEnd', callbackRemove)
.emulateTransitionEnd(150) :
callbackRemove()
} else if (callback) {
callback()
}
}
Modal.prototype.checkScrollbar = function () {
if (document.body.clientWidth >= window.innerWidth) return
this.scrollbarWidth = this.scrollbarWidth || this.measureScrollbar()
}
Modal.prototype.setScrollbar = function () {
var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
if (this.scrollbarWidth) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
}
Modal.prototype.resetScrollbar = function () {
this.$body.css('padding-right', '')
}
Modal.prototype.measureScrollbar = function () { // thx walsh
var scrollDiv = document.createElement('div')
scrollDiv.className = 'modal-scrollbar-measure'
this.$body.append(scrollDiv)
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
this.$body[0].removeChild(scrollDiv)
return scrollbarWidth
}
// MODAL PLUGIN DEFINITION
// =======================
function Plugin(option, _relatedTarget) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.modal')
var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
if (typeof option == 'string') data[option](_relatedTarget)
else if (options.show) data.show(_relatedTarget)
})
}
var old = $.fn.modal
$.fn.modal = Plugin
$.fn.modal.Constructor = Modal
// MODAL NO CONFLICT
// =================
$.fn.modal.noConflict = function () {
$.fn.modal = old
return this
}
// MODAL DATA-API
// ==============
$(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
var $this = $(this)
var href = $this.attr('href')
var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
if ($this.is('a')) e.preventDefault()
$target.one('show.bs.modal', function (showEvent) {
if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
$target.one('hidden.bs.modal', function () {
$this.is(':visible') && $this.trigger('focus')
})
})
Plugin.call($target, option, this)
})
}(jQuery);
/* ========================================================================
* Bootstrap: tooltip.js v3.2.0
* http://getbootstrap.com/javascript/#tooltip
* Inspired by the original jQuery.tipsy by Jason Frame
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// TOOLTIP PUBLIC CLASS DEFINITION
// ===============================
var Tooltip = function (element, options) {
this.type =
this.options =
this.enabled =
this.timeout =
this.hoverState =
this.$element = null
this.init('tooltip', element, options)
}
Tooltip.VERSION = '3.2.0'
Tooltip.DEFAULTS = {
animation: true,
placement: 'top',
selector: false,
template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
trigger: 'hover focus',
title: '',
delay: 0,
html: false,
container: false,
viewport: {
selector: 'body',
padding: 0
}
}
Tooltip.prototype.init = function (type, element, options) {
this.enabled = true
this.type = type
this.$element = $(element)
this.options = this.getOptions(options)
this.$viewport = this.options.viewport && $(this.options.viewport.selector || this.options.viewport)
var triggers = this.options.trigger.split(' ')
for (var i = triggers.length; i--;) {
var trigger = triggers[i]
if (trigger == 'click') {
this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
} else if (trigger != 'manual') {
var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin'
var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
}
}
this.options.selector ?
(this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
this.fixTitle()
}
Tooltip.prototype.getDefaults = function () {
return Tooltip.DEFAULTS
}
Tooltip.prototype.getOptions = function (options) {
options = $.extend({}, this.getDefaults(), this.$element.data(), options)
if (options.delay && typeof options.delay == 'number') {
options.delay = {
show: options.delay,
hide: options.delay
}
}
return options
}
Tooltip.prototype.getDelegateOptions = function () {
var options = {}
var defaults = this.getDefaults()
this._options && $.each(this._options, function (key, value) {
if (defaults[key] != value) options[key] = value
})
return options
}
Tooltip.prototype.enter = function (obj) {
var self = obj instanceof this.constructor ?
obj : $(obj.currentTarget).data('bs.' + this.type)
if (!self) {
self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
$(obj.currentTarget).data('bs.' + this.type, self)
}
clearTimeout(self.timeout)
self.hoverState = 'in'
if (!self.options.delay || !self.options.delay.show) return self.show()
self.timeout = setTimeout(function () {
if (self.hoverState == 'in') self.show()
}, self.options.delay.show)
}
Tooltip.prototype.leave = function (obj) {
var self = obj instanceof this.constructor ?
obj : $(obj.currentTarget).data('bs.' + this.type)
if (!self) {
self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
$(obj.currentTarget).data('bs.' + this.type, self)
}
clearTimeout(self.timeout)
self.hoverState = 'out'
if (!self.options.delay || !self.options.delay.hide) return self.hide()
self.timeout = setTimeout(function () {
if (self.hoverState == 'out') self.hide()
}, self.options.delay.hide)
}
Tooltip.prototype.show = function () {
var e = $.Event('show.bs.' + this.type)
if (this.hasContent() && this.enabled) {
this.$element.trigger(e)
var inDom = $.contains(document.documentElement, this.$element[0])
if (e.isDefaultPrevented() || !inDom) return
var that = this
var $tip = this.tip()
var tipId = this.getUID(this.type)
this.setContent()
$tip.attr('id', tipId)
this.$element.attr('aria-describedby', tipId)
if (this.options.animation) $tip.addClass('fade')
var placement = typeof this.options.placement == 'function' ?
this.options.placement.call(this, $tip[0], this.$element[0]) :
this.options.placement
var autoToken = /\s?auto?\s?/i
var autoPlace = autoToken.test(placement)
if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
$tip
.detach()
.css({ top: 0, left: 0, display: 'block' })
.addClass(placement)
.data('bs.' + this.type, this)
this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
var pos = this.getPosition()
var actualWidth = $tip[0].offsetWidth
var actualHeight = $tip[0].offsetHeight
if (autoPlace) {
var orgPlacement = placement
var $parent = this.$element.parent()
var parentDim = this.getPosition($parent)
placement = placement == 'bottom' && pos.top + pos.height + actualHeight - parentDim.scroll > parentDim.height ? 'top' :
placement == 'top' && pos.top - parentDim.scroll - actualHeight < 0 ? 'bottom' :
placement == 'right' && pos.right + actualWidth > parentDim.width ? 'left' :
placement == 'left' && pos.left - actualWidth < parentDim.left ? 'right' :
placement
$tip
.removeClass(orgPlacement)
.addClass(placement)
}
var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
this.applyPlacement(calculatedOffset, placement)
var complete = function () {
that.$element.trigger('shown.bs.' + that.type)
that.hoverState = null
}
$.support.transition && this.$tip.hasClass('fade') ?
$tip
.one('bsTransitionEnd', complete)
.emulateTransitionEnd(150) :
complete()
}
}
Tooltip.prototype.applyPlacement = function (offset, placement) {
var $tip = this.tip()
var width = $tip[0].offsetWidth
var height = $tip[0].offsetHeight
// manually read margins because getBoundingClientRect includes difference
var marginTop = parseInt($tip.css('margin-top'), 10)
var marginLeft = parseInt($tip.css('margin-left'), 10)
// we must check for NaN for ie 8/9
if (isNaN(marginTop)) marginTop = 0
if (isNaN(marginLeft)) marginLeft = 0
offset.top = offset.top + marginTop
offset.left = offset.left + marginLeft
// $.fn.offset doesn't round pixel values
// so we use setOffset directly with our own function B-0
$.offset.setOffset($tip[0], $.extend({
using: function (props) {
$tip.css({
top: Math.round(props.top),
left: Math.round(props.left)
})
}
}, offset), 0)
$tip.addClass('in')
// check to see if placing tip in new offset caused the tip to resize itself
var actualWidth = $tip[0].offsetWidth
var actualHeight = $tip[0].offsetHeight
if (placement == 'top' && actualHeight != height) {
offset.top = offset.top + height - actualHeight
}
var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
if (delta.left) offset.left += delta.left
else offset.top += delta.top
var arrowDelta = delta.left ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight
var arrowPosition = delta.left ? 'left' : 'top'
var arrowOffsetPosition = delta.left ? 'offsetWidth' : 'offsetHeight'
$tip.offset(offset)
this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], arrowPosition)
}
Tooltip.prototype.replaceArrow = function (delta, dimension, position) {
this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + '%') : '')
}
Tooltip.prototype.setContent = function () {
var $tip = this.tip()
var title = this.getTitle()
$tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
$tip.removeClass('fade in top bottom left right')
}
Tooltip.prototype.hide = function () {
var that = this
var $tip = this.tip()
var e = $.Event('hide.bs.' + this.type)
this.$element.removeAttr('aria-describedby')
function complete() {
if (that.hoverState != 'in') $tip.detach()
that.$element.trigger('hidden.bs.' + that.type)
}
this.$element.trigger(e)
if (e.isDefaultPrevented()) return
$tip.removeClass('in')
$.support.transition && this.$tip.hasClass('fade') ?
$tip
.one('bsTransitionEnd', complete)
.emulateTransitionEnd(150) :
complete()
this.hoverState = null
return this
}
Tooltip.prototype.fixTitle = function () {
var $e = this.$element
if ($e.attr('title') || typeof ($e.attr('data-original-title')) != 'string') {
$e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
}
}
Tooltip.prototype.hasContent = function () {
return this.getTitle()
}
Tooltip.prototype.getPosition = function ($element) {
$element = $element || this.$element
var el = $element[0]
var isBody = el.tagName == 'BODY'
return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : null, {
scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop(),
width: isBody ? $(window).width() : $element.outerWidth(),
height: isBody ? $(window).height() : $element.outerHeight()
}, isBody ? { top: 0, left: 0 } : $element.offset())
}
Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
/* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
}
Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {
var delta = { top: 0, left: 0 }
if (!this.$viewport) return delta
var viewportPadding = this.options.viewport && this.options.viewport.padding || 0
var viewportDimensions = this.getPosition(this.$viewport)
if (/right|left/.test(placement)) {
var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll
var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight
if (topEdgeOffset < viewportDimensions.top) { // top overflow
delta.top = viewportDimensions.top - topEdgeOffset
} else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow
delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset
}
} else {
var leftEdgeOffset = pos.left - viewportPadding
var rightEdgeOffset = pos.left + viewportPadding + actualWidth
if (leftEdgeOffset < viewportDimensions.left) { // left overflow
delta.left = viewportDimensions.left - leftEdgeOffset
} else if (rightEdgeOffset > viewportDimensions.width) { // right overflow
delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset
}
}
return delta
}
Tooltip.prototype.getTitle = function () {
var title
var $e = this.$element
var o = this.options
title = $e.attr('data-original-title')
|| (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
return title
}
Tooltip.prototype.getUID = function (prefix) {
do prefix += ~~(Math.random() * 1000000)
while (document.getElementById(prefix))
return prefix
}
Tooltip.prototype.tip = function () {
return (this.$tip = this.$tip || $(this.options.template))
}
Tooltip.prototype.arrow = function () {
return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))
}
Tooltip.prototype.validate = function () {
if (!this.$element[0].parentNode) {
this.hide()
this.$element = null
this.options = null
}
}
Tooltip.prototype.enable = function () {
this.enabled = true
}
Tooltip.prototype.disable = function () {
this.enabled = false
}
Tooltip.prototype.toggleEnabled = function () {
this.enabled = !this.enabled
}
Tooltip.prototype.toggle = function (e) {
var self = this
if (e) {
self = $(e.currentTarget).data('bs.' + this.type)
if (!self) {
self = new this.constructor(e.currentTarget, this.getDelegateOptions())
$(e.currentTarget).data('bs.' + this.type, self)
}
}
self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
}
Tooltip.prototype.destroy = function () {
clearTimeout(this.timeout)
this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)
}
// TOOLTIP PLUGIN DEFINITION
// =========================
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.tooltip')
var options = typeof option == 'object' && option
if (!data && option == 'destroy') return
if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
if (typeof option == 'string') data[option]()
})
}
var old = $.fn.tooltip
$.fn.tooltip = Plugin
$.fn.tooltip.Constructor = Tooltip
// TOOLTIP NO CONFLICT
// ===================
$.fn.tooltip.noConflict = function () {
$.fn.tooltip = old
return this
}
}(jQuery);
/* ========================================================================
* Bootstrap: popover.js v3.2.0
* http://getbootstrap.com/javascript/#popovers
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// POPOVER PUBLIC CLASS DEFINITION
// ===============================
var Popover = function (element, options) {
this.init('popover', element, options)
}
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
Popover.VERSION = '3.2.0'
Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
placement: 'right',
trigger: 'click',
content: '',
template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
})
// NOTE: POPOVER EXTENDS tooltip.js
// ================================
Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
Popover.prototype.constructor = Popover
Popover.prototype.getDefaults = function () {
return Popover.DEFAULTS
}
Popover.prototype.setContent = function () {
var $tip = this.tip()
var title = this.getTitle()
var content = this.getContent()
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
$tip.find('.popover-content').empty()[ // we use append for html objects to maintain js events
this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
](content)
$tip.removeClass('fade top bottom left right in')
// IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
// this manually by checking the contents.
if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
}
Popover.prototype.hasContent = function () {
return this.getTitle() || this.getContent()
}
Popover.prototype.getContent = function () {
var $e = this.$element
var o = this.options
return $e.attr('data-content')
|| (typeof o.content == 'function' ?
o.content.call($e[0]) :
o.content)
}
Popover.prototype.arrow = function () {
return (this.$arrow = this.$arrow || this.tip().find('.arrow'))
}
Popover.prototype.tip = function () {
if (!this.$tip) this.$tip = $(this.options.template)
return this.$tip
}
// POPOVER PLUGIN DEFINITION
// =========================
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.popover')
var options = typeof option == 'object' && option
if (!data && option == 'destroy') return
if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
if (typeof option == 'string') data[option]()
})
}
var old = $.fn.popover
$.fn.popover = Plugin
$.fn.popover.Constructor = Popover
// POPOVER NO CONFLICT
// ===================
$.fn.popover.noConflict = function () {
$.fn.popover = old
return this
}
}(jQuery);
/* ========================================================================
* Bootstrap: scrollspy.js v3.2.0
* http://getbootstrap.com/javascript/#scrollspy
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// SCROLLSPY CLASS DEFINITION
// ==========================
function ScrollSpy(element, options) {
var process = $.proxy(this.process, this)
this.$body = $('body')
this.$scrollElement = $(element).is('body') ? $(window) : $(element)
this.options = $.extend({}, ScrollSpy.DEFAULTS, options)
this.selector = (this.options.target || '') + ' .nav li > a'
this.offsets = []
this.targets = []
this.activeTarget = null
this.scrollHeight = 0
this.$scrollElement.on('scroll.bs.scrollspy', process)
this.refresh()
this.process()
}
ScrollSpy.VERSION = '3.2.0'
ScrollSpy.DEFAULTS = {
offset: 10
}
ScrollSpy.prototype.getScrollHeight = function () {
return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)
}
ScrollSpy.prototype.refresh = function () {
var offsetMethod = 'offset'
var offsetBase = 0
if (!$.isWindow(this.$scrollElement[0])) {
offsetMethod = 'position'
offsetBase = this.$scrollElement.scrollTop()
}
this.offsets = []
this.targets = []
this.scrollHeight = this.getScrollHeight()
var self = this
this.$body
.find(this.selector)
.map(function () {
var $el = $(this)
var href = $el.data('target') || $el.attr('href')
var $href = /^#./.test(href) && $(href)
return ($href
&& $href.length
&& $href.is(':visible')
&& [[$href[offsetMethod]().top + offsetBase, href]]) || null
})
.sort(function (a, b) { return a[0] - b[0] })
.each(function () {
self.offsets.push(this[0])
self.targets.push(this[1])
})
}
ScrollSpy.prototype.process = function () {
var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
var scrollHeight = this.getScrollHeight()
var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height()
var offsets = this.offsets
var targets = this.targets
var activeTarget = this.activeTarget
var i
if (this.scrollHeight != scrollHeight) {
this.refresh()
}
if (scrollTop >= maxScroll) {
return activeTarget != (i = targets[targets.length - 1]) && this.activate(i)
}
if (activeTarget && scrollTop <= offsets[0]) {
return activeTarget != (i = targets[0]) && this.activate(i)
}
for (i = offsets.length; i--;) {
activeTarget != targets[i]
&& scrollTop >= offsets[i]
&& (!offsets[i + 1] || scrollTop <= offsets[i + 1])
&& this.activate(targets[i])
}
}
ScrollSpy.prototype.activate = function (target) {
this.activeTarget = target
$(this.selector)
.parentsUntil(this.options.target, '.active')
.removeClass('active')
var selector = this.selector +
'[data-target="' + target + '"],' +
this.selector + '[href="' + target + '"]'
var active = $(selector)
.parents('li')
.addClass('active')
if (active.parent('.dropdown-menu').length) {
active = active
.closest('li.dropdown')
.addClass('active')
}
active.trigger('activate.bs.scrollspy')
}
// SCROLLSPY PLUGIN DEFINITION
// ===========================
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.scrollspy')
var options = typeof option == 'object' && option
if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
if (typeof option == 'string') data[option]()
})
}
var old = $.fn.scrollspy
$.fn.scrollspy = Plugin
$.fn.scrollspy.Constructor = ScrollSpy
// SCROLLSPY NO CONFLICT
// =====================
$.fn.scrollspy.noConflict = function () {
$.fn.scrollspy = old
return this
}
// SCROLLSPY DATA-API
// ==================
$(window).on('load.bs.scrollspy.data-api', function () {
$('[data-spy="scroll"]').each(function () {
var $spy = $(this)
Plugin.call($spy, $spy.data())
})
})
}(jQuery);
/* ========================================================================
* Bootstrap: tab.js v3.2.0
* http://getbootstrap.com/javascript/#tabs
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// TAB CLASS DEFINITION
// ====================
var Tab = function (element) {
this.element = $(element)
}
Tab.VERSION = '3.2.0'
Tab.prototype.show = function () {
var $this = this.element
var $ul = $this.closest('ul:not(.dropdown-menu)')
var selector = $this.data('target')
if (!selector) {
selector = $this.attr('href')
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
}
if ($this.parent('li').hasClass('active')) return
var previous = $ul.find('.active:last a')[0]
var e = $.Event('show.bs.tab', {
relatedTarget: previous
})
$this.trigger(e)
if (e.isDefaultPrevented()) return
var $target = $(selector)
this.activate($this.closest('li'), $ul)
this.activate($target, $target.parent(), function () {
$this.trigger({
type: 'shown.bs.tab',
relatedTarget: previous
})
})
}
Tab.prototype.activate = function (element, container, callback) {
var $active = container.find('> .active')
var transition = callback
&& $.support.transition
&& $active.hasClass('fade')
function next() {
$active
.removeClass('active')
.find('> .dropdown-menu > .active')
.removeClass('active')
element.addClass('active')
if (transition) {
element[0].offsetWidth // reflow for transition
element.addClass('in')
} else {
element.removeClass('fade')
}
if (element.parent('.dropdown-menu')) {
element.closest('li.dropdown').addClass('active')
}
callback && callback()
}
transition ?
$active
.one('bsTransitionEnd', next)
.emulateTransitionEnd(150) :
next()
$active.removeClass('in')
}
// TAB PLUGIN DEFINITION
// =====================
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.tab')
if (!data) $this.data('bs.tab', (data = new Tab(this)))
if (typeof option == 'string') data[option]()
})
}
var old = $.fn.tab
$.fn.tab = Plugin
$.fn.tab.Constructor = Tab
// TAB NO CONFLICT
// ===============
$.fn.tab.noConflict = function () {
$.fn.tab = old
return this
}
// TAB DATA-API
// ============
$(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
e.preventDefault()
Plugin.call($(this), 'show')
})
}(jQuery);
/* ========================================================================
* Bootstrap: affix.js v3.2.0
* http://getbootstrap.com/javascript/#affix
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// AFFIX CLASS DEFINITION
// ======================
var Affix = function (element, options) {
this.options = $.extend({}, Affix.DEFAULTS, options)
this.$target = $(this.options.target)
.on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
.on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
this.$element = $(element)
this.affixed =
this.unpin =
this.pinnedOffset = null
this.checkPosition()
}
Affix.VERSION = '3.2.0'
Affix.RESET = 'affix affix-top affix-bottom'
Affix.DEFAULTS = {
offset: 0,
target: window
}
Affix.prototype.getPinnedOffset = function () {
if (this.pinnedOffset) return this.pinnedOffset
this.$element.removeClass(Affix.RESET).addClass('affix')
var scrollTop = this.$target.scrollTop()
var position = this.$element.offset()
return (this.pinnedOffset = position.top - scrollTop)
}
Affix.prototype.checkPositionWithEventLoop = function () {
setTimeout($.proxy(this.checkPosition, this), 1)
}
Affix.prototype.checkPosition = function () {
if (!this.$element.is(':visible')) return
var scrollHeight = $(document).height()
var scrollTop = this.$target.scrollTop()
var position = this.$element.offset()
var offset = this.options.offset
var offsetTop = offset.top
var offsetBottom = offset.bottom
if (typeof offset != 'object') offsetBottom = offsetTop = offset
if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element)
if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
var affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? false :
offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :
offsetTop != null && (scrollTop <= offsetTop) ? 'top' : false
if (this.affixed === affix) return
if (this.unpin != null) this.$element.css('top', '')
var affixType = 'affix' + (affix ? '-' + affix : '')
var e = $.Event(affixType + '.bs.affix')
this.$element.trigger(e)
if (e.isDefaultPrevented()) return
this.affixed = affix
this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
this.$element
.removeClass(Affix.RESET)
.addClass(affixType)
.trigger($.Event(affixType.replace('affix', 'affixed')))
if (affix == 'bottom') {
this.$element.offset({
top: scrollHeight - this.$element.height() - offsetBottom
})
}
}
// AFFIX PLUGIN DEFINITION
// =======================
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.affix')
var options = typeof option == 'object' && option
if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
if (typeof option == 'string') data[option]()
})
}
var old = $.fn.affix
$.fn.affix = Plugin
$.fn.affix.Constructor = Affix
// AFFIX NO CONFLICT
// =================
$.fn.affix.noConflict = function () {
$.fn.affix = old
return this
}
// AFFIX DATA-API
// ==============
$(window).on('load', function () {
$('[data-spy="affix"]').each(function () {
var $spy = $(this)
var data = $spy.data()
data.offset = data.offset || {}
if (data.offsetBottom) data.offset.bottom = data.offsetBottom
if (data.offsetTop) data.offset.top = data.offsetTop
Plugin.call($spy, data)
})
})
}(jQuery);
},{}],2:[function(require,module,exports){
/* Require modules */
var $ = require('jquery'),
Backbone = require('backbone'),
Router = require('./common/router'),
events = require('./common/eventChannel'),
utils = require('./common/utilities');
// Set jQuery to window object to enable global access
window.jQuery = $;
// Require bootstrap.
bootstrap = require('./_vendor/bootstrap');
// Assign jQuery instance to Backbone.$
Backbone.$ = $;
// Create instance of router
var router = new Router();
// Call function to start the Backbone history functionality
Backbone.history.start();
// Listen for ref being obfuscated
events.on('ref:obfuscated', function (sObfuscated) {
// Navigate manually to the route
router.navigate('results/'+ sObfuscated, { trigger: true });
});
},{"./_vendor/bootstrap":1,"./common/eventChannel":3,"./common/router":5,"./common/utilities":6,"backbone":14,"jquery":15}],3:[function(require,module,exports){
/* Require modules */
var $ = require('jquery'),
Backbone = require('backbone'),
_ = require('underscore');
// Assign jQuery instance to Backbone.$
Backbone.$ = $;
// Set the result of the underscore extend function as the module exports
module.exports = _.extend({}, Backbone.Events);
},{"backbone":14,"jquery":15,"underscore":16}],4:[function(require,module,exports){
// Set the object as the module exports
module.exports = {
// DOM elements for views
elNav: '#nav',
elSearch: '#search',
elResults: '#results'
};
},{}],5:[function(require,module,exports){
/* Require modules */
var $ = require('jquery'),
Backbone = require('backbone'),
globals = require('../common/globals'),
utils = require('../common/utilities');
// Assign jQuery instance to Backbone.$
Backbone.$ = $;
// Set the router as the module exports
module.exports = Backbone.Router.extend({
// The app routes ("routeUrl": "routeName")
routes: {
"": "home",
"results/:ref": "results"
},
// Home route listener
home: function () {
utils.log('Home', 'routeChange');
// Require views.
var NavView = require('../views/nav'),
SearchView = require('../views/search');
// Create instances of views if they don't exist.
if (!this.navView) this.navView = new NavView({ el: $(globals.elNav) });
if (!this.searchView) this.searchView = new SearchView({ el: $(globals.elSearch) });
},
// Results route listener
results: function (ref) {
utils.log('Results', 'routeChange');
var NavView = require('../views/nav'),
SearchView = require('../views/search'),
ResultsView = require('../views/results');
// Create instances of views if they don't exists.
if (!this.navView) this.navView = new NavView({ el: $(globals.elNav) });
if (!this.searchView) this.searchView = new SearchView({ el: $(globals.elSearch) });
if (!this.resultsView) {
this.resultsView = new ResultsView({ el: $(globals.elResults), sObfuscated: ref });
} else {
// Set the option
this.resultsView.options.sObfuscated = ref;
// Call function to get images
this.resultsView.getImages();
}
}
});
},{"../common/globals":4,"../common/utilities":6,"../views/nav":11,"../views/results":12,"../views/search":13,"backbone":14,"jquery":15}],6:[function(require,module,exports){
// Set the object as the module exports
module.exports = {
/* Name log
* Purpose To log a message to the browsers console.
* @params {string} message The message to be output.
* {string} sEvent The type of message.
*/
log: function(message, type) {
// Check if console.log exists.
if (console && console.log) {
// Variable to hold style.
var style = "padding: 3px;";
// Switch the type to determine style.
switch (type) {
// View render.
case 'viewRender':
style += 'background: #C0EAC0; color: #78CC78;';
break;
// Object initiation.
case 'initiated':
style += 'background: #8DC1E0; color: #659EBC;';
break;
// Error.
case 'error':
style += 'background: #D9534F; color: #ffffff;';
break;
// Debug.
case 'debug':
style += 'background: #F0AD4E; color: #ffffff;';
break;
// Route change.
case 'routeChange':
style += 'background: #F7F7F9; color: #CECEEF;';
break;
// Route change.
case 'dataFetch':
style += 'background: #878F94; color: #6E757B;';
break;
// Default.
default:
style += 'background: #F0AD4E; color: #ffffff;';
break;
}
// END switch.
// Log the message.
console.log('%c '+ message +' ', style);
}
// END if console.log.
}
/**********************************************************************/
};
},{}],7:[function(require,module,exports){
/* Require modules */
var $ = require('jquery'),
Backbone = require('backbone'),
_ = require('underscore');
// Assign jQuery instance to Backbone.$
Backbone.$ = $;
/**
* Miscellaneous model & collection, used for any form of request.
*/
var BasicModel = Backbone.Model.extend(
{
defaults:
{
data: [],
// Base url that will be used for the request.
urlRoot: '',
},
// This function can be used to alter the url such as add parameters for GET requests..
url: function ()
{
var params = (this.get('params')) ? this.get('params') : '';
return this.get('urlRoot') + params;
},
// This function can be used to access the data before the fetch success or error functions are invoked.
// Useful for performing type conversions, error checking, etc.
parse: function (data, xhr)
{
// Set errors to false initially.
data.errors = false;
if (data.responseCode < 1 || data.errorCode < 1)
{
data.errors = true;
}
return data;
}
});
var BasicCollection = Backbone.Collection.extend(
{
model: BasicModel,
// This function can be used to alter the url such as add parameters for GET requests..
url: function()
{
var params = (this.params) ? this.params : '';
return this.urlRoot + params;
},
// This function can be used to access the data before the fetch success or error functions are invoked.
// Useful for performing type conversions, error checking, etc.
parse: function (data, xhr)
{
// Set errors to false initially.
this.errors = false;
if (data.responseCode < 1 || data.errorCode < 1)
{
this.errors = true;
}
return data;
},
// This function is used to paginate a collection.
pagination : function(perPage, page)
{
var collection = this;
page = page-1;
// Returns the rest of the models in the collections.
collection = _(collection.rest(perPage*page));
// Returns the first page of the collection.
collection = _(collection.first(perPage));
// Produces a new collection by transforming each model using the attributes set above.
return collection.map( function(model) { return model.toJSON(); } );
}
});
/*********************************************/
// Set the models and collections as the exports
module.exports = {
BasicModel: BasicModel,
BasicCollection: BasicCollection
};
},{"backbone":14,"jquery":15,"underscore":16}],8:[function(require,module,exports){
var _ = require('underscore');
module.exports = function(obj){
var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};
with(obj||{}){
__p+='<div class="container"><div class="navbar-header"><button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-brand-centered"><span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span></button><div class="navbar-brand navbar-brand-centered">Vehicle Image Search</div></div><div class="navbar-collapse collapse"></div></div>';
}
return __p;
};
},{"underscore":16}],9:[function(require,module,exports){
var _ = require('underscore');
module.exports = function(obj){
var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};
with(obj||{}){
__p+='<div class="col-xs-12"><div class="images container"><div class="row"><div class="col-xs-4"><div class="label label-info">'+
((__t=( images.length ))==null?'':__t)+
' Image'+
((__t=( images.length > 1 || images.length === 0 ? 's' : '' ))==null?'':__t)+
' found</div></div></div><div class="row">';
if (images.length > 0) {
__p+='';
var count = 0;
__p+='';
_.each(images, function (image) {
__p+='';
count++;
__p+='<div class="col-xs-4"><img class="ghost img-thumbnail" src="'+
((__t=( image ))==null?'':__t)+
'"></div>';
if (count !== 0 && count % 3 === 0) {
__p+='</div><div class="row">';
}
__p+='';
});
__p+='';
} else {
__p+='<div class="col-xs-3 col-xs-offset-4 alert alert-info">Sorry, no images were found</div>';
}
__p+='</div></div></div>';
}
return __p;
};
},{"underscore":16}],10:[function(require,module,exports){
var _ = require('underscore');
module.exports = function(obj){
var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};
with(obj||{}){
__p+='<div class="search-container col-xs-6 col-xs-offset-3"><div class="errors"></div><div class="form-box"><h5 class="text-center"><span class="glyphicon glyphicon-info-sign text-info"></span><em>Enter the registration No. and stock ref No. separated by a space</em></h5><form action="" method=""><input name="ref" type="text" placeholder="Eg: SO06DNV ARNFH-U-5728" class="form-control" autocomplete="off"><button class="btn btn-info btn-block submit" type="submit">Search</button></form></div></div>';
}
return __p;
};
},{"underscore":16}],11:[function(require,module,exports){
/* Require modules */
var $ = require('jquery'),
Backbone = require('backbone'),
models = require('../models/global'),
template = require("../templates/nav.html"),
utils = require("../common/utilities"),
events = require('../common/eventChannel');
// Assign jQuery instance to Backbone.$
Backbone.$ = $;
// Set the view as the module export
module.exports = Backbone.View.extend({
// Is called at instantiation
initialize: function () {
// Call function to render the view
this.render();
},
// Populates the view's element with the new HTML
render: function () {
// Log status
utils.log("Nav", "viewRender");
// Populate template with data
this.$el.html( template() );
// Enable chaining
return this;
},
});
},{"../common/eventChannel":3,"../common/utilities":6,"../models/global":7,"../templates/nav.html":8,"backbone":14,"jquery":15}],12:[function(require,module,exports){
/* Require modules */
var $ = require('jquery'),
Backbone = require('backbone'),
_ = require('underscore'),
models = require('../models/global'),
template = require("../templates/results.html"),
utils = require("../common/utilities"),
events = require('../common/eventChannel');
// Assign jQuery instance to Backbone.$
Backbone.$ = $;
// Set the view as the module export
module.exports = Backbone.View.extend({
// Array will hold the eventual pool of images
oImageCache: {},
// Integer to keep count of loaded images
currentImageLoadCount: 0,
// Array to hold all possible images
aPossibleImages: [
'http://imagecache.arnoldclark.com/imageserver/%ref/350/i/',
'http://imagecache.arnoldclark.com/imageserver/%ref/350/6/',
'http://imagecache.arnoldclark.com/imageserver/%ref/350/f/',
'http://imagecache.arnoldclark.com/imageserver/%ref/350/4/',
'http://imagecache.arnoldclark.com/imageserver/%ref/350/5/',
'http://imagecache.arnoldclark.com/imageserver/%ref/350/r/',
'http://imagecache.arnoldclark.com/imageserver/%ref/800/4/',
'http://imagecache.arnoldclark.com/imageserver/%ref/800/i/',
'http://imagecache.arnoldclark.com/imageserver/%ref/800/6/',
'http://imagecache.arnoldclark.com/imageserver/%ref/800/f/',
'http://imagecache.arnoldclark.com/imageserver/%ref/800/5/',
'http://imagecache.arnoldclark.com/imageserver/%ref/800/r/'
],
// Is called at instantiation
initialize: function (options) {
// Replace the view's defaults with the passed in options
this.options = _.defaults(options || {}, this.options);
// Call function to render the view
this.getImages();
},
// Populates the view's element with the new HTML
render: function () {
// Log status
utils.log("Results", "viewRender");
// Populate template with data
this.$el.html( template( { images: this.oImageCache[this.options.sObfuscated] } ) );
// Loop each of the images and fade them in
this.$el.find('img').each(function (i) {
// Set the current element
var elImg = $(this);
// Set a timeout so that each image comes in slightly after the last
setTimeout(function () {
// Add the fadeIn class to enable the CSS animation
elImg.addClass('fadeIn');
}, i * 200);
});
// Enable chaining
return this;
},
getImages: function () {
// Reset image load count
this.currentImageLoadCount = 0;
// Check to see if cache for obfuscated ref exists
if (this.oImageCache[this.options.sObfuscated]) {
// Call render function
this.render();
// Log that we're using cache
utils.log('use cache');
// Prevent further execution
return false;
}
// Log that we're querying server
utils.log('search server');
// If we're here then the cache does not exist. Let's create one
this.oImageCache[this.options.sObfuscated] = [];
// Loop each of the array items
for ( var i = 0; i < this.aPossibleImages.length; i++ ) {
// Replace the placeholder string with the obfuscated ref
var sImageUrl = this.aPossibleImages[i].replace('%ref', this.options.sObfuscated);
// Call function to create image
this.createImage(sImageUrl);
}
// END loop
},
createImage: function (sImageUrl) {
// Create new image object
var img = new Image();
// Set scope
var $this = this;
// Set the source to the current item
img.src = sImageUrl;
// Set load and error event listeners
$(img).load( function (){
// Increment the load count
$this.currentImageLoadCount++;
// Add the src of the image to the array
$this.oImageCache[$this.options.sObfuscated].push(sImageUrl);
// If the count is equal to the length of the possible images, call render function
if ($this.currentImageLoadCount === $this.aPossibleImages.length) $this.render();
})
.error( function () {
// Increment the load count
$this.currentImageLoadCount++;
// If the count is equal to the length of the possible images, call render function
if ($this.currentImageLoadCount === $this.aPossibleImages.length) $this.render();
});
}
});
},{"../common/eventChannel":3,"../common/utilities":6,"../models/global":7,"../templates/results.html":9,"backbone":14,"jquery":15,"underscore":16}],13:[function(require,module,exports){
/* Require modules */
var $ = require('jquery'),
Backbone = require('backbone'),
models = require('../models/global'),
template = require("../templates/search.html"),
utils = require("../common/utilities"),
events = require('../common/eventChannel'),
router = require('../common/router.js');
// Assign jQuery instance to Backbone.$
Backbone.$ = $;
// Set the view as the module export
module.exports = Backbone.View.extend({
// Is called at instantiation
initialize: function () {
// Call function to render the view
this.render();
},
// Capture events
events: {
'submit form': 'onFormSubmit'
},
// Populates the view's element with the new HTML
render: function () {
// Log status
utils.log("Search", "viewRender");
// Populate template with data
this.$el.html( template() );
// Enable chaining
return this;
},
onFormSubmit: function (e) {
// Prevent form from submitting
e.preventDefault();
// Set the form element to a variable
var elForm = this.$el.find('form');
// Get the input value
var sRef = elForm.find('input[name=ref]').val();
// Set bErrors to false initially. Set message and pattern variables. The pattern
// will match a string that has two sets of characters with a space delimitting them
var bErrors = false,
sMessage = '',
rPattern = /^[^\s]+\s[^\s]+$/,
elError = this.$el.find('.errors');
// If the value is empty
if (sRef === '') {
// Set to true since there's an error
bErrors = true;
// Set the message
sMessage = 'You have not entered anything!';
} else {
// Check to see we have two strings seperated by a space
if (!rPattern.test(sRef)) bErrors = true;
// Set the message
sMessage = 'You have not entered the refs seperated by a space';
}
// END if
// If there are any errors
if (bErrors) {
// Find the errors element and remove/add the classes to enable the styles and then set the HTML to the message string
elError.removeClass('fadeOutDown').addClass("alert alert-danger animated fadeInUp").html(sMessage);
// Prevent further execution.
return false;
}
// END if errors
// Find the errors element if it has the danger class and remove/add the classes to enable the styles and clear the html.
if (elError.hasClass('alert-danger')) elError.removeClass('fadeInUp').addClass("alert alert-danger animated fadeOutDown");
// Seperate the string into an array of the two refs
var aRefs = sRef.split(' ');
// Call function to Obfuscate the two strings
this.ObfuscateRefs(aRefs[0], aRefs[1]);
},
ObfuscateRefs: function (sReg, sStock) {
// Reverse the reg no
var sReveredReg = sReg.split('').reverse().join('');
// Get the length of reg string
var iRegLength = sReg.length;
// Set variable to hold the new string
var sObfuscated = '';
// Loop for the length of the reg
for ( var i = 0; i < iRegLength; i++ ) {
// Add the nth character of the stock and reg nos
sObfuscated += sStock[i] +''+ sReveredReg[i];
}
// Add the 9th character of the stock no
sObfuscated += sStock[10];
// Trigger event, passing the obfuscated string
events.trigger('ref:obfuscated', sObfuscated);
}
});
},{"../common/eventChannel":3,"../common/router.js":5,"../common/utilities":6,"../models/global":7,"../templates/search.html":10,"backbone":14,"jquery":15}],14:[function(require,module,exports){
// Backbone.js 1.1.2
// (c) 2010-2014 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
// Backbone may be freely distributed under the MIT license.
// For all details and documentation:
// http://backbonejs.org
(function(root, factory) {
// Set up Backbone appropriately for the environment. Start with AMD.
if (typeof define === 'function' && define.amd) {
define(['underscore', 'jquery', 'exports'], function(_, $, exports) {
// Export global even in AMD case in case this script is loaded with
// others that may still expect a global Backbone.
root.Backbone = factory(root, exports, _, $);
});
// Next for Node.js or CommonJS. jQuery may not be needed as a module.
} else if (typeof exports !== 'undefined') {
var _ = require('underscore');
factory(root, exports, _);
// Finally, as a browser global.
} else {
root.Backbone = factory(root, {}, root._, (root.jQuery || root.Zepto || root.ender || root.$));
}
}(this, function(root, Backbone, _, $) {
// Initial Setup
// -------------
// Save the previous value of the `Backbone` variable, so that it can be
// restored later on, if `noConflict` is used.
var previousBackbone = root.Backbone;
// Create local references to array methods we'll want to use later.
var array = [];
var push = array.push;
var slice = array.slice;
var splice = array.splice;
// Current version of the library. Keep in sync with `package.json`.
Backbone.VERSION = '1.1.2';
// For Backbone's purposes, jQuery, Zepto, Ender, or My Library (kidding) owns
// the `$` variable.
Backbone.$ = $;
// Runs Backbone.js in *noConflict* mode, returning the `Backbone` variable
// to its previous owner. Returns a reference to this Backbone object.
Backbone.noConflict = function() {
root.Backbone = previousBackbone;
return this;
};
// Turn on `emulateHTTP` to support legacy HTTP servers. Setting this option
// will fake `"PATCH"`, `"PUT"` and `"DELETE"` requests via the `_method` parameter and
// set a `X-Http-Method-Override` header.
Backbone.emulateHTTP = false;
// Turn on `emulateJSON` to support legacy servers that can't deal with direct
// `application/json` requests ... will encode the body as
// `application/x-www-form-urlencoded` instead and will send the model in a
// form param named `model`.
Backbone.emulateJSON = false;
// Backbone.Events
// ---------------
// A module that can be mixed in to *any object* in order to provide it with
// custom events. You may bind with `on` or remove with `off` callback
// functions to an event; `trigger`-ing an event fires all callbacks in
// succession.
//
// var object = {};
// _.extend(object, Backbone.Events);
// object.on('expand', function(){ alert('expanded'); });
// object.trigger('expand');
//
var Events = Backbone.Events = {
// Bind an event to a `callback` function. Passing `"all"` will bind
// the callback to all events fired.
on: function(name, callback, context) {
if (!eventsApi(this, 'on', name, [callback, context]) || !callback) return this;
this._events || (this._events = {});
var events = this._events[name] || (this._events[name] = []);
events.push({callback: callback, context: context, ctx: context || this});
return this;
},
// Bind an event to only be triggered a single time. After the first time
// the callback is invoked, it will be removed.
once: function(name, callback, context) {
if (!eventsApi(this, 'once', name, [callback, context]) || !callback) return this;
var self = this;
var once = _.once(function() {
self.off(name, once);
callback.apply(this, arguments);
});
once._callback = callback;
return this.on(name, once, context);
},
// Remove one or many callbacks. If `context` is null, removes all
// callbacks with that function. If `callback` is null, removes all
// callbacks for the event. If `name` is null, removes all bound
// callbacks for all events.
off: function(name, callback, context) {
var retain, ev, events, names, i, l, j, k;
if (!this._events || !eventsApi(this, 'off', name, [callback, context])) return this;
if (!name && !callback && !context) {
this._events = void 0;
return this;
}
names = name ? [name] : _.keys(this._events);
for (i = 0, l = names.length; i < l; i++) {
name = names[i];
if (events = this._events[name]) {
this._events[name] = retain = [];
if (callback || context) {
for (j = 0, k = events.length; j < k; j++) {
ev = events[j];
if ((callback && callback !== ev.callback && callback !== ev.callback._callback) ||
(context && context !== ev.context)) {
retain.push(ev);
}
}
}
if (!retain.length) delete this._events[name];
}
}
return this;
},
// Trigger one or many events, firing all bound callbacks. Callbacks are
// passed the same arguments as `trigger` is, apart from the event name
// (unless you're listening on `"all"`, which will cause your callback to
// receive the true name of the event as the first argument).
trigger: function(name) {
if (!this._events) return this;
var args = slice.call(arguments, 1);
if (!eventsApi(this, 'trigger', name, args)) return this;
var events = this._events[name];
var allEvents = this._events.all;
if (events) triggerEvents(events, args);
if (allEvents) triggerEvents(allEvents, arguments);
return this;
},
// Tell this object to stop listening to either specific events ... or
// to every object it's currently listening to.
stopListening: function(obj, name, callback) {
var listeningTo = this._listeningTo;
if (!listeningTo) return this;
var remove = !name && !callback;
if (!callback && typeof name === 'object') callback = this;
if (obj) (listeningTo = {})[obj._listenId] = obj;
for (var id in listeningTo) {
obj = listeningTo[id];
obj.off(name, callback, this);
if (remove || _.isEmpty(obj._events)) delete this._listeningTo[id];
}
return this;
}
};
// Regular expression used to split event strings.
var eventSplitter = /\s+/;
// Implement fancy features of the Events API such as multiple event
// names `"change blur"` and jQuery-style event maps `{change: action}`
// in terms of the existing API.
var eventsApi = function(obj, action, name, rest) {
if (!name) return true;
// Handle event maps.
if (typeof name === 'object') {
for (var key in name) {
obj[action].apply(obj, [key, name[key]].concat(rest));
}
return false;
}
// Handle space separated event names.
if (eventSplitter.test(name)) {
var names = name.split(eventSplitter);
for (var i = 0, l = names.length; i < l; i++) {
obj[action].apply(obj, [names[i]].concat(rest));
}
return false;
}
return true;
};
// A difficult-to-believe, but optimized internal dispatch function for
// triggering events. Tries to keep the usual cases speedy (most internal
// Backbone events have 3 arguments).
var triggerEvents = function(events, args) {
var ev, i = -1, l = events.length, a1 = args[0], a2 = args[1], a3 = args[2];
switch (args.length) {
case 0: while (++i < l) (ev = events[i]).callback.call(ev.ctx); return;
case 1: while (++i < l) (ev = events[i]).callback.call(ev.ctx, a1); return;
case 2: while (++i < l) (ev = events[i]).callback.call(ev.ctx, a1, a2); return;
case 3: while (++i < l) (ev = events[i]).callback.call(ev.ctx, a1, a2, a3); return;
default: while (++i < l) (ev = events[i]).callback.apply(ev.ctx, args); return;
}
};
var listenMethods = {listenTo: 'on', listenToOnce: 'once'};
// Inversion-of-control versions of `on` and `once`. Tell *this* object to
// listen to an event in another object ... keeping track of what it's
// listening to.
_.each(listenMethods, function(implementation, method) {
Events[method] = function(obj, name, callback) {
var listeningTo = this._listeningTo || (this._listeningTo = {});
var id = obj._listenId || (obj._listenId = _.uniqueId('l'));
listeningTo[id] = obj;
if (!callback && typeof name === 'object') callback = this;
obj[implementation](name, callback, this);
return this;
};
});
// Aliases for backwards compatibility.
Events.bind = Events.on;
Events.unbind = Events.off;
// Allow the `Backbone` object to serve as a global event bus, for folks who
// want global "pubsub" in a convenient place.
_.extend(Backbone, Events);
// Backbone.Model
// --------------
// Backbone **Models** are the basic data object in the framework --
// frequently representing a row in a table in a database on your server.
// A discrete chunk of data and a bunch of useful, related methods for
// performing computations and transformations on that data.
// Create a new model with the specified attributes. A client id (`cid`)
// is automatically generated and assigned for you.
var Model = Backbone.Model = function(attributes, options) {
var attrs = attributes || {};
options || (options = {});
this.cid = _.uniqueId('c');
this.attributes = {};
if (options.collection) this.collection = options.collection;
if (options.parse) attrs = this.parse(attrs, options) || {};
attrs = _.defaults({}, attrs, _.result(this, 'defaults'));
this.set(attrs, options);
this.changed = {};
this.initialize.apply(this, arguments);
};
// Attach all inheritable methods to the Model prototype.
_.extend(Model.prototype, Events, {
// A hash of attributes whose current and previous value differ.
changed: null,
// The value returned during the last failed validation.
validationError: null,
// The default name for the JSON `id` attribute is `"id"`. MongoDB and
// CouchDB users may want to set this to `"_id"`.
idAttribute: 'id',
// Initialize is an empty function by default. Override it with your own
// initialization logic.
initialize: function(){},
// Return a copy of the model's `attributes` object.
toJSON: function(options) {
return _.clone(this.attributes);
},
// Proxy `Backbone.sync` by default -- but override this if you need
// custom syncing semantics for *this* particular model.
sync: function() {
return Backbone.sync.apply(this, arguments);
},
// Get the value of an attribute.
get: function(attr) {
return this.attributes[attr];
},
// Get the HTML-escaped value of an attribute.
escape: function(attr) {
return _.escape(this.get(attr));
},
// Returns `true` if the attribute contains a value that is not null
// or undefined.
has: function(attr) {
return this.get(attr) != null;
},
// Set a hash of model attributes on the object, firing `"change"`. This is
// the core primitive operation of a model, updating the data and notifying
// anyone who needs to know about the change in state. The heart of the beast.
set: function(key, val, options) {
var attr, attrs, unset, changes, silent, changing, prev, current;
if (key == null) return this;
// Handle both `"key", value` and `{key: value}` -style arguments.
if (typeof key === 'object') {
attrs = key;
options = val;
} else {
(attrs = {})[key] = val;
}
options || (options = {});
// Run validation.
if (!this._validate(attrs, options)) return false;
// Extract attributes and options.
unset = options.unset;
silent = options.silent;
changes = [];
changing = this._changing;
this._changing = true;
if (!changing) {
this._previousAttributes = _.clone(this.attributes);
this.changed = {};
}
current = this.attributes, prev = this._previousAttributes;
// Check for changes of `id`.
if (this.idAttribute in attrs) this.id = attrs[this.idAttribute];
// For each `set` attribute, update or delete the current value.
for (attr in attrs) {
val = attrs[attr];
if (!_.isEqual(current[attr], val)) changes.push(attr);
if (!_.isEqual(prev[attr], val)) {
this.changed[attr] = val;
} else {
delete this.changed[attr];
}
unset ? delete current[attr] : current[attr] = val;
}
// Trigger all relevant attribute changes.
if (!silent) {
if (changes.length) this._pending = options;
for (var i = 0, l = changes.length; i < l; i++) {
this.trigger('change:' + changes[i], this, current[changes[i]], options);
}
}
// You might be wondering why there's a `while` loop here. Changes can
// be recursively nested within `"change"` events.
if (changing) return this;
if (!silent) {
while (this._pending) {
options = this._pending;
this._pending = false;
this.trigger('change', this, options);
}
}
this._pending = false;
this._changing = false;
return this;
},
// Remove an attribute from the model, firing `"change"`. `unset` is a noop
// if the attribute doesn't exist.
unset: function(attr, options) {
return this.set(attr, void 0, _.extend({}, options, {unset: true}));
},
// Clear all attributes on the model, firing `"change"`.
clear: function(options) {
var attrs = {};
for (var key in this.attributes) attrs[key] = void 0;
return this.set(attrs, _.extend({}, options, {unset: true}));
},
// Determine if the model has changed since the last `"change"` event.
// If you specify an attribute name, determine if that attribute has changed.
hasChanged: function(attr) {
if (attr == null) return !_.isEmpty(this.changed);
return _.has(this.changed, attr);
},
// Return an object containing all the attributes that have changed, or
// false if there are no changed attributes. Useful for determining what
// parts of a view need to be updated and/or what attributes need to be
// persisted to the server. Unset attributes will be set to undefined.
// You can also pass an attributes object to diff against the model,
// determining if there *would be* a change.
changedAttributes: function(diff) {
if (!diff) return this.hasChanged() ? _.clone(this.changed) : false;
var val, changed = false;
var old = this._changing ? this._previousAttributes : this.attributes;
for (var attr in diff) {
if (_.isEqual(old[attr], (val = diff[attr]))) continue;
(changed || (changed = {}))[attr] = val;
}
return changed;
},
// Get the previous value of an attribute, recorded at the time the last
// `"change"` event was fired.
previous: function(attr) {
if (attr == null || !this._previousAttributes) return null;
return this._previousAttributes[attr];
},
// Get all of the attributes of the model at the time of the previous
// `"change"` event.
previousAttributes: function() {
return _.clone(this._previousAttributes);
},
// Fetch the model from the server. If the server's representation of the
// model differs from its current attributes, they will be overridden,
// triggering a `"change"` event.
fetch: function(options) {
options = options ? _.clone(options) : {};
if (options.parse === void 0) options.parse = true;
var model = this;
var success = options.success;
options.success = function(resp) {
if (!model.set(model.parse(resp, options), options)) return false;
if (success) success(model, resp, options);
model.trigger('sync', model, resp, options);
};
wrapError(this, options);
return this.sync('read', this, options);
},
// Set a hash of model attributes, and sync the model to the server.
// If the server returns an attributes hash that differs, the model's
// state will be `set` again.
save: function(key, val, options) {
var attrs, method, xhr, attributes = this.attributes;
// Handle both `"key", value` and `{key: value}` -style arguments.
if (key == null || typeof key === 'object') {
attrs = key;
options = val;
} else {
(attrs = {})[key] = val;
}
options = _.extend({validate: true}, options);
// If we're not waiting and attributes exist, save acts as
// `set(attr).save(null, opts)` with validation. Otherwise, check if
// the model will be valid when the attributes, if any, are set.
if (attrs && !options.wait) {
if (!this.set(attrs, options)) return false;
} else {
if (!this._validate(attrs, options)) return false;
}
// Set temporary attributes if `{wait: true}`.
if (attrs && options.wait) {
this.attributes = _.extend({}, attributes, attrs);
}
// After a successful server-side save, the client is (optionally)
// updated with the server-side state.
if (options.parse === void 0) options.parse = true;
var model = this;
var success = options.success;
options.success = function(resp) {
// Ensure attributes are restored during synchronous saves.
model.attributes = attributes;
var serverAttrs = model.parse(resp, options);
if (options.wait) serverAttrs = _.extend(attrs || {}, serverAttrs);
if (_.isObject(serverAttrs) && !model.set(serverAttrs, options)) {
return false;
}
if (success) success(model, resp, options);
model.trigger('sync', model, resp, options);
};
wrapError(this, options);
method = this.isNew() ? 'create' : (options.patch ? 'patch' : 'update');
if (method === 'patch') options.attrs = attrs;
xhr = this.sync(method, this, options);
// Restore attributes.
if (attrs && options.wait) this.attributes = attributes;
return xhr;
},
// Destroy this model on the server if it was already persisted.
// Optimistically removes the model from its collection, if it has one.
// If `wait: true` is passed, waits for the server to respond before removal.
destroy: function(options) {
options = options ? _.clone(options) : {};
var model = this;
var success = options.success;
var destroy = function() {
model.trigger('destroy', model, model.collection, options);
};
options.success = function(resp) {
if (options.wait || model.isNew()) destroy();
if (success) success(model, resp, options);
if (!model.isNew()) model.trigger('sync', model, resp, options);
};
if (this.isNew()) {
options.success();
return false;
}
wrapError(this, options);
var xhr = this.sync('delete', this, options);
if (!options.wait) destroy();
return xhr;
},
// Default URL for the model's representation on the server -- if you're
// using Backbone's restful methods, override this to change the endpoint
// that will be called.
url: function() {
var base =
_.result(this, 'urlRoot') ||
_.result(this.collection, 'url') ||
urlError();
if (this.isNew()) return base;
return base.replace(/([^\/])$/, '$1/') + encodeURIComponent(this.id);
},
// **parse** converts a response into the hash of attributes to be `set` on
// the model. The default implementation is just to pass the response along.
parse: function(resp, options) {
return resp;
},
// Create a new model with identical attributes to this one.
clone: function() {
return new this.constructor(this.attributes);
},
// A model is new if it has never been saved to the server, and lacks an id.
isNew: function() {
return !this.has(this.idAttribute);
},
// Check if the model is currently in a valid state.
isValid: function(options) {
return this._validate({}, _.extend(options || {}, { validate: true }));
},
// Run validation against the next complete set of model attributes,
// returning `true` if all is well. Otherwise, fire an `"invalid"` event.
_validate: function(attrs, options) {
if (!options.validate || !this.validate) return true;
attrs = _.extend({}, this.attributes, attrs);
var error = this.validationError = this.validate(attrs, options) || null;
if (!error) return true;
this.trigger('invalid', this, error, _.extend(options, {validationError: error}));
return false;
}
});
// Underscore methods that we want to implement on the Model.
var modelMethods = ['keys', 'values', 'pairs', 'invert', 'pick', 'omit'];
// Mix in each Underscore method as a proxy to `Model#attributes`.
_.each(modelMethods, function(method) {
Model.prototype[method] = function() {
var args = slice.call(arguments);
args.unshift(this.attributes);
return _[method].apply(_, args);
};
});
// Backbone.Collection
// -------------------
// If models tend to represent a single row of data, a Backbone Collection is
// more analagous to a table full of data ... or a small slice or page of that
// table, or a collection of rows that belong together for a particular reason
// -- all of the messages in this particular folder, all of the documents
// belonging to this particular author, and so on. Collections maintain
// indexes of their models, both in order, and for lookup by `id`.
// Create a new **Collection**, perhaps to contain a specific type of `model`.
// If a `comparator` is specified, the Collection will maintain
// its models in sort order, as they're added and removed.
var Collection = Backbone.Collection = function(models, options) {
options || (options = {});
if (options.model) this.model = options.model;
if (options.comparator !== void 0) this.comparator = options.comparator;
this._reset();
this.initialize.apply(this, arguments);
if (models) this.reset(models, _.extend({silent: true}, options));
};
// Default options for `Collection#set`.
var setOptions = {add: true, remove: true, merge: true};
var addOptions = {add: true, remove: false};
// Define the Collection's inheritable methods.
_.extend(Collection.prototype, Events, {
// The default model for a collection is just a **Backbone.Model**.
// This should be overridden in most cases.
model: Model,
// Initialize is an empty function by default. Override it with your own
// initialization logic.
initialize: function(){},
// The JSON representation of a Collection is an array of the
// models' attributes.
toJSON: function(options) {
return this.map(function(model){ return model.toJSON(options); });
},
// Proxy `Backbone.sync` by default.
sync: function() {
return Backbone.sync.apply(this, arguments);
},
// Add a model, or list of models to the set.
add: function(models, options) {
return this.set(models, _.extend({merge: false}, options, addOptions));
},
// Remove a model, or a list of models from the set.
remove: function(models, options) {
var singular = !_.isArray(models);
models = singular ? [models] : _.clone(models);
options || (options = {});
var i, l, index, model;
for (i = 0, l = models.length; i < l; i++) {
model = models[i] = this.get(models[i]);
if (!model) continue;
delete this._byId[model.id];
delete this._byId[model.cid];
index = this.indexOf(model);
this.models.splice(index, 1);
this.length--;
if (!options.silent) {
options.index = index;
model.trigger('remove', model, this, options);
}
this._removeReference(model, options);
}
return singular ? models[0] : models;
},
// Update a collection by `set`-ing a new list of models, adding new ones,
// removing models that are no longer present, and merging models that
// already exist in the collection, as necessary. Similar to **Model#set**,
// the core operation for updating the data contained by the collection.
set: function(models, options) {
options = _.defaults({}, options, setOptions);
if (options.parse) models = this.parse(models, options);
var singular = !_.isArray(models);
models = singular ? (models ? [models] : []) : _.clone(models);
var i, l, id, model, attrs, existing, sort;
var at = options.at;
var targetModel = this.model;
var sortable = this.comparator && (at == null) && options.sort !== false;
var sortAttr = _.isString(this.comparator) ? this.comparator : null;
var toAdd = [], toRemove = [], modelMap = {};
var add = options.add, merge = options.merge, remove = options.remove;
var order = !sortable && add && remove ? [] : false;
// Turn bare objects into model references, and prevent invalid models
// from being added.
for (i = 0, l = models.length; i < l; i++) {
attrs = models[i] || {};
if (attrs instanceof Model) {
id = model = attrs;
} else {
id = attrs[targetModel.prototype.idAttribute || 'id'];
}
// If a duplicate is found, prevent it from being added and
// optionally merge it into the existing model.
if (existing = this.get(id)) {
if (remove) modelMap[existing.cid] = true;
if (merge) {
attrs = attrs === model ? model.attributes : attrs;
if (options.parse) attrs = existing.parse(attrs, options);
existing.set(attrs, options);
if (sortable && !sort && existing.hasChanged(sortAttr)) sort = true;
}
models[i] = existing;
// If this is a new, valid model, push it to the `toAdd` list.
} else if (add) {
model = models[i] = this._prepareModel(attrs, options);
if (!model) continue;
toAdd.push(model);
this._addReference(model, options);
}
// Do not add multiple models with the same `id`.
model = existing || model;
if (order && (model.isNew() || !modelMap[model.id])) order.push(model);
modelMap[model.id] = true;
}
// Remove nonexistent models if appropriate.
if (remove) {
for (i = 0, l = this.length; i < l; ++i) {
if (!modelMap[(model = this.models[i]).cid]) toRemove.push(model);
}
if (toRemove.length) this.remove(toRemove, options);
}
// See if sorting is needed, update `length` and splice in new models.
if (toAdd.length || (order && order.length)) {
if (sortable) sort = true;
this.length += toAdd.length;
if (at != null) {
for (i = 0, l = toAdd.length; i < l; i++) {
this.models.splice(at + i, 0, toAdd[i]);
}
} else {
if (order) this.models.length = 0;
var orderedModels = order || toAdd;
for (i = 0, l = orderedModels.length; i < l; i++) {
this.models.push(orderedModels[i]);
}
}
}
// Silently sort the collection if appropriate.
if (sort) this.sort({silent: true});
// Unless silenced, it's time to fire all appropriate add/sort events.
if (!options.silent) {
for (i = 0, l = toAdd.length; i < l; i++) {
(model = toAdd[i]).trigger('add', model, this, options);
}
if (sort || (order && order.length)) this.trigger('sort', this, options);
}
// Return the added (or merged) model (or models).
return singular ? models[0] : models;
},
// When you have more items than you want to add or remove individually,
// you can reset the entire set with a new list of models, without firing
// any granular `add` or `remove` events. Fires `reset` when finished.
// Useful for bulk operations and optimizations.
reset: function(models, options) {
options || (options = {});
for (var i = 0, l = this.models.length; i < l; i++) {
this._removeReference(this.models[i], options);
}
options.previousModels = this.models;
this._reset();
models = this.add(models, _.extend({silent: true}, options));
if (!options.silent) this.trigger('reset', this, options);
return models;
},
// Add a model to the end of the collection.
push: function(model, options) {
return this.add(model, _.extend({at: this.length}, options));
},
// Remove a model from the end of the collection.
pop: function(options) {
var model = this.at(this.length - 1);
this.remove(model, options);
return model;
},
// Add a model to the beginning of the collection.
unshift: function(model, options) {
return this.add(model, _.extend({at: 0}, options));
},
// Remove a model from the beginning of the collection.
shift: function(options) {
var model = this.at(0);
this.remove(model, options);
return model;
},
// Slice out a sub-array of models from the collection.
slice: function() {
return slice.apply(this.models, arguments);
},
// Get a model from the set by id.
get: function(obj) {
if (obj == null) return void 0;
return this._byId[obj] || this._byId[obj.id] || this._byId[obj.cid];
},
// Get the model at the given index.
at: function(index) {
return this.models[index];
},
// Return models with matching attributes. Useful for simple cases of
// `filter`.
where: function(attrs, first) {
if (_.isEmpty(attrs)) return first ? void 0 : [];
return this[first ? 'find' : 'filter'](function(model) {
for (var key in attrs) {
if (attrs[key] !== model.get(key)) return false;
}
return true;
});
},
// Return the first model with matching attributes. Useful for simple cases
// of `find`.
findWhere: function(attrs) {
return this.where(attrs, true);
},
// Force the collection to re-sort itself. You don't need to call this under
// normal circumstances, as the set will maintain sort order as each item
// is added.
sort: function(options) {
if (!this.comparator) throw new Error('Cannot sort a set without a comparator');
options || (options = {});
// Run sort based on type of `comparator`.
if (_.isString(this.comparator) || this.comparator.length === 1) {
this.models = this.sortBy(this.comparator, this);
} else {
this.models.sort(_.bind(this.comparator, this));
}
if (!options.silent) this.trigger('sort', this, options);
return this;
},
// Pluck an attribute from each model in the collection.
pluck: function(attr) {
return _.invoke(this.models, 'get', attr);
},
// Fetch the default set of models for this collection, resetting the
// collection when they arrive. If `reset: true` is passed, the response
// data will be passed through the `reset` method instead of `set`.
fetch: function(options) {
options = options ? _.clone(options) : {};
if (options.parse === void 0) options.parse = true;
var success = options.success;
var collection = this;
options.success = function(resp) {
var method = options.reset ? 'reset' : 'set';
collection[method](resp, options);
if (success) success(collection, resp, options);
collection.trigger('sync', collection, resp, options);
};
wrapError(this, options);
return this.sync('read', this, options);
},
// Create a new instance of a model in this collection. Add the model to the
// collection immediately, unless `wait: true` is passed, in which case we
// wait for the server to agree.
create: function(model, options) {
options = options ? _.clone(options) : {};
if (!(model = this._prepareModel(model, options))) return false;
if (!options.wait) this.add(model, options);
var collection = this;
var success = options.success;
options.success = function(model, resp) {
if (options.wait) collection.add(model, options);
if (success) success(model, resp, options);
};
model.save(null, options);
return model;
},
// **parse** converts a response into a list of models to be added to the
// collection. The default implementation is just to pass it through.
parse: function(resp, options) {
return resp;
},
// Create a new collection with an identical list of models as this one.
clone: function() {
return new this.constructor(this.models);
},
// Private method to reset all internal state. Called when the collection
// is first initialized or reset.
_reset: function() {
this.length = 0;
this.models = [];
this._byId = {};
},
// Prepare a hash of attributes (or other model) to be added to this
// collection.
_prepareModel: function(attrs, options) {
if (attrs instanceof Model) return attrs;
options = options ? _.clone(options) : {};
options.collection = this;
var model = new this.model(attrs, options);
if (!model.validationError) return model;
this.trigger('invalid', this, model.validationError, options);
return false;
},
// Internal method to create a model's ties to a collection.
_addReference: function(model, options) {
this._byId[model.cid] = model;
if (model.id != null) this._byId[model.id] = model;
if (!model.collection) model.collection = this;
model.on('all', this._onModelEvent, this);
},
// Internal method to sever a model's ties to a collection.
_removeReference: function(model, options) {
if (this === model.collection) delete model.collection;
model.off('all', this._onModelEvent, this);
},
// Internal method called every time a model in the set fires an event.
// Sets need to update their indexes when models change ids. All other
// events simply proxy through. "add" and "remove" events that originate
// in other collections are ignored.
_onModelEvent: function(event, model, collection, options) {
if ((event === 'add' || event === 'remove') && collection !== this) return;
if (event === 'destroy') this.remove(model, options);
if (model && event === 'change:' + model.idAttribute) {
delete this._byId[model.previous(model.idAttribute)];
if (model.id != null) this._byId[model.id] = model;
}
this.trigger.apply(this, arguments);
}
});
// Underscore methods that we want to implement on the Collection.
// 90% of the core usefulness of Backbone Collections is actually implemented
// right here:
var methods = ['forEach', 'each', 'map', 'collect', 'reduce', 'foldl',
'inject', 'reduceRight', 'foldr', 'find', 'detect', 'filter', 'select',
'reject', 'every', 'all', 'some', 'any', 'include', 'contains', 'invoke',
'max', 'min', 'toArray', 'size', 'first', 'head', 'take', 'initial', 'rest',
'tail', 'drop', 'last', 'without', 'difference', 'indexOf', 'shuffle',
'lastIndexOf', 'isEmpty', 'chain', 'sample'];
// Mix in each Underscore method as a proxy to `Collection#models`.
_.each(methods, function(method) {
Collection.prototype[method] = function() {
var args = slice.call(arguments);
args.unshift(this.models);
return _[method].apply(_, args);
};
});
// Underscore methods that take a property name as an argument.
var attributeMethods = ['groupBy', 'countBy', 'sortBy', 'indexBy'];
// Use attributes instead of properties.
_.each(attributeMethods, function(method) {
Collection.prototype[method] = function(value, context) {
var iterator = _.isFunction(value) ? value : function(model) {
return model.get(value);
};
return _[method](this.models, iterator, context);
};
});
// Backbone.View
// -------------
// Backbone Views are almost more convention than they are actual code. A View
// is simply a JavaScript object that represents a logical chunk of UI in the
// DOM. This might be a single item, an entire list, a sidebar or panel, or
// even the surrounding frame which wraps your whole app. Defining a chunk of
// UI as a **View** allows you to define your DOM events declaratively, without
// having to worry about render order ... and makes it easy for the view to
// react to specific changes in the state of your models.
// Creating a Backbone.View creates its initial element outside of the DOM,
// if an existing element is not provided...
var View = Backbone.View = function(options) {
this.cid = _.uniqueId('view');
options || (options = {});
_.extend(this, _.pick(options, viewOptions));
this._ensureElement();
this.initialize.apply(this, arguments);
this.delegateEvents();
};
// Cached regex to split keys for `delegate`.
var delegateEventSplitter = /^(\S+)\s*(.*)$/;
// List of view options to be merged as properties.
var viewOptions = ['model', 'collection', 'el', 'id', 'attributes', 'className', 'tagName', 'events'];
// Set up all inheritable **Backbone.View** properties and methods.
_.extend(View.prototype, Events, {
// The default `tagName` of a View's element is `"div"`.
tagName: 'div',
// jQuery delegate for element lookup, scoped to DOM elements within the
// current view. This should be preferred to global lookups where possible.
$: function(selector) {
return this.$el.find(selector);
},
// Initialize is an empty function by default. Override it with your own
// initialization logic.
initialize: function(){},
// **render** is the core function that your view should override, in order
// to populate its element (`this.el`), with the appropriate HTML. The
// convention is for **render** to always return `this`.
render: function() {
return this;
},
// Remove this view by taking the element out of the DOM, and removing any
// applicable Backbone.Events listeners.
remove: function() {
this.$el.remove();
this.stopListening();
return this;
},
// Change the view's element (`this.el` property), including event
// re-delegation.
setElement: function(element, delegate) {
if (this.$el) this.undelegateEvents();
this.$el = element instanceof Backbone.$ ? element : Backbone.$(element);
this.el = this.$el[0];
if (delegate !== false) this.delegateEvents();
return this;
},
// Set callbacks, where `this.events` is a hash of
//
// *{"event selector": "callback"}*
//
// {
// 'mousedown .title': 'edit',
// 'click .button': 'save',
// 'click .open': function(e) { ... }
// }
//
// pairs. Callbacks will be bound to the view, with `this` set properly.
// Uses event delegation for efficiency.
// Omitting the selector binds the event to `this.el`.
// This only works for delegate-able events: not `focus`, `blur`, and
// not `change`, `submit`, and `reset` in Internet Explorer.
delegateEvents: function(events) {
if (!(events || (events = _.result(this, 'events')))) return this;
this.undelegateEvents();
for (var key in events) {
var method = events[key];
if (!_.isFunction(method)) method = this[events[key]];
if (!method) continue;
var match = key.match(delegateEventSplitter);
var eventName = match[1], selector = match[2];
method = _.bind(method, this);
eventName += '.delegateEvents' + this.cid;
if (selector === '') {
this.$el.on(eventName, method);
} else {
this.$el.on(eventName, selector, method);
}
}
return this;
},
// Clears all callbacks previously bound to the view with `delegateEvents`.
// You usually don't need to use this, but may wish to if you have multiple
// Backbone views attached to the same DOM element.
undelegateEvents: function() {
this.$el.off('.delegateEvents' + this.cid);
return this;
},
// Ensure that the View has a DOM element to render into.
// If `this.el` is a string, pass it through `$()`, take the first
// matching element, and re-assign it to `el`. Otherwise, create
// an element from the `id`, `className` and `tagName` properties.
_ensureElement: function() {
if (!this.el) {
var attrs = _.extend({}, _.result(this, 'attributes'));
if (this.id) attrs.id = _.result(this, 'id');
if (this.className) attrs['class'] = _.result(this, 'className');
var $el = Backbone.$('<' + _.result(this, 'tagName') + '>').attr(attrs);
this.setElement($el, false);
} else {
this.setElement(_.result(this, 'el'), false);
}
}
});
// Backbone.sync
// -------------
// Override this function to change the manner in which Backbone persists
// models to the server. You will be passed the type of request, and the
// model in question. By default, makes a RESTful Ajax request
// to the model's `url()`. Some possible customizations could be:
//
// * Use `setTimeout` to batch rapid-fire updates into a single request.
// * Send up the models as XML instead of JSON.
// * Persist models via WebSockets instead of Ajax.
//
// Turn on `Backbone.emulateHTTP` in order to send `PUT` and `DELETE` requests
// as `POST`, with a `_method` parameter containing the true HTTP method,
// as well as all requests with the body as `application/x-www-form-urlencoded`
// instead of `application/json` with the model in a param named `model`.
// Useful when interfacing with server-side languages like **PHP** that make
// it difficult to read the body of `PUT` requests.
Backbone.sync = function(method, model, options) {
var type = methodMap[method];
// Default options, unless specified.
_.defaults(options || (options = {}), {
emulateHTTP: Backbone.emulateHTTP,
emulateJSON: Backbone.emulateJSON
});
// Default JSON-request options.
var params = {type: type, dataType: 'json'};
// Ensure that we have a URL.
if (!options.url) {
params.url = _.result(model, 'url') || urlError();
}
// Ensure that we have the appropriate request data.
if (options.data == null && model && (method === 'create' || method === 'update' || method === 'patch')) {
params.contentType = 'application/json';
params.data = JSON.stringify(options.attrs || model.toJSON(options));
}
// For older servers, emulate JSON by encoding the request into an HTML-form.
if (options.emulateJSON) {
params.contentType = 'application/x-www-form-urlencoded';
params.data = params.data ? {model: params.data} : {};
}
// For older servers, emulate HTTP by mimicking the HTTP method with `_method`
// And an `X-HTTP-Method-Override` header.
if (options.emulateHTTP && (type === 'PUT' || type === 'DELETE' || type === 'PATCH')) {
params.type = 'POST';
if (options.emulateJSON) params.data._method = type;
var beforeSend = options.beforeSend;
options.beforeSend = function(xhr) {
xhr.setRequestHeader('X-HTTP-Method-Override', type);
if (beforeSend) return beforeSend.apply(this, arguments);
};
}
// Don't process data on a non-GET request.
if (params.type !== 'GET' && !options.emulateJSON) {
params.processData = false;
}
// If we're sending a `PATCH` request, and we're in an old Internet Explorer
// that still has ActiveX enabled by default, override jQuery to use that
// for XHR instead. Remove this line when jQuery supports `PATCH` on IE8.
if (params.type === 'PATCH' && noXhrPatch) {
params.xhr = function() {
return new ActiveXObject("Microsoft.XMLHTTP");
};
}
// Make the request, allowing the user to override any Ajax options.
var xhr = options.xhr = Backbone.ajax(_.extend(params, options));
model.trigger('request', model, xhr, options);
return xhr;
};
var noXhrPatch =
typeof window !== 'undefined' && !!window.ActiveXObject &&
!(window.XMLHttpRequest && (new XMLHttpRequest).dispatchEvent);
// Map from CRUD to HTTP for our default `Backbone.sync` implementation.
var methodMap = {
'create': 'POST',
'update': 'PUT',
'patch': 'PATCH',
'delete': 'DELETE',
'read': 'GET'
};
// Set the default implementation of `Backbone.ajax` to proxy through to `$`.
// Override this if you'd like to use a different library.
Backbone.ajax = function() {
return Backbone.$.ajax.apply(Backbone.$, arguments);
};
// Backbone.Router
// ---------------
// Routers map faux-URLs to actions, and fire events when routes are
// matched. Creating a new one sets its `routes` hash, if not set statically.
var Router = Backbone.Router = function(options) {
options || (options = {});
if (options.routes) this.routes = options.routes;
this._bindRoutes();
this.initialize.apply(this, arguments);
};
// Cached regular expressions for matching named param parts and splatted
// parts of route strings.
var optionalParam = /\((.*?)\)/g;
var namedParam = /(\(\?)?:\w+/g;
var splatParam = /\*\w+/g;
var escapeRegExp = /[\-{}\[\]+?.,\\\^$|#\s]/g;
// Set up all inheritable **Backbone.Router** properties and methods.
_.extend(Router.prototype, Events, {
// Initialize is an empty function by default. Override it with your own
// initialization logic.
initialize: function(){},
// Manually bind a single named route to a callback. For example:
//
// this.route('search/:query/p:num', 'search', function(query, num) {
// ...
// });
//
route: function(route, name, callback) {
if (!_.isRegExp(route)) route = this._routeToRegExp(route);
if (_.isFunction(name)) {
callback = name;
name = '';
}
if (!callback) callback = this[name];
var router = this;
Backbone.history.route(route, function(fragment) {
var args = router._extractParameters(route, fragment);
router.execute(callback, args);
router.trigger.apply(router, ['route:' + name].concat(args));
router.trigger('route', name, args);
Backbone.history.trigger('route', router, name, args);
});
return this;
},
// Execute a route handler with the provided parameters. This is an
// excellent place to do pre-route setup or post-route cleanup.
execute: function(callback, args) {
if (callback) callback.apply(this, args);
},
// Simple proxy to `Backbone.history` to save a fragment into the history.
navigate: function(fragment, options) {
Backbone.history.navigate(fragment, options);
return this;
},
// Bind all defined routes to `Backbone.history`. We have to reverse the
// order of the routes here to support behavior where the most general
// routes can be defined at the bottom of the route map.
_bindRoutes: function() {
if (!this.routes) return;
this.routes = _.result(this, 'routes');
var route, routes = _.keys(this.routes);
while ((route = routes.pop()) != null) {
this.route(route, this.routes[route]);
}
},
// Convert a route string into a regular expression, suitable for matching
// against the current location hash.
_routeToRegExp: function(route) {
route = route.replace(escapeRegExp, '\\$&')
.replace(optionalParam, '(?:$1)?')
.replace(namedParam, function(match, optional) {
return optional ? match : '([^/?]+)';
})
.replace(splatParam, '([^?]*?)');
return new RegExp('^' + route + '(?:\\?([\\s\\S]*))?$');
},
// Given a route, and a URL fragment that it matches, return the array of
// extracted decoded parameters. Empty or unmatched parameters will be
// treated as `null` to normalize cross-browser behavior.
_extractParameters: function(route, fragment) {
var params = route.exec(fragment).slice(1);
return _.map(params, function(param, i) {
// Don't decode the search params.
if (i === params.length - 1) return param || null;
return param ? decodeURIComponent(param) : null;
});
}
});
// Backbone.History
// ----------------
// Handles cross-browser history management, based on either
// [pushState](http://diveintohtml5.info/history.html) and real URLs, or
// [onhashchange](https://developer.mozilla.org/en-US/docs/DOM/window.onhashchange)
// and URL fragments. If the browser supports neither (old IE, natch),
// falls back to polling.
var History = Backbone.History = function() {
this.handlers = [];
_.bindAll(this, 'checkUrl');
// Ensure that `History` can be used outside of the browser.
if (typeof window !== 'undefined') {
this.location = window.location;
this.history = window.history;
}
};
// Cached regex for stripping a leading hash/slash and trailing space.
var routeStripper = /^[#\/]|\s+$/g;
// Cached regex for stripping leading and trailing slashes.
var rootStripper = /^\/+|\/+$/g;
// Cached regex for detecting MSIE.
var isExplorer = /msie [\w.]+/;
// Cached regex for removing a trailing slash.
var trailingSlash = /\/$/;
// Cached regex for stripping urls of hash.
var pathStripper = /#.*$/;
// Has the history handling already been started?
History.started = false;
// Set up all inheritable **Backbone.History** properties and methods.
_.extend(History.prototype, Events, {
// The default interval to poll for hash changes, if necessary, is
// twenty times a second.
interval: 50,
// Are we at the app root?
atRoot: function() {
return this.location.pathname.replace(/[^\/]$/, '$&/') === this.root;
},
// Gets the true hash value. Cannot use location.hash directly due to bug
// in Firefox where location.hash will always be decoded.
getHash: function(window) {
var match = (window || this).location.href.match(/#(.*)$/);
return match ? match[1] : '';
},
// Get the cross-browser normalized URL fragment, either from the URL,
// the hash, or the override.
getFragment: function(fragment, forcePushState) {
if (fragment == null) {
if (this._hasPushState || !this._wantsHashChange || forcePushState) {
fragment = decodeURI(this.location.pathname + this.location.search);
var root = this.root.replace(trailingSlash, '');
if (!fragment.indexOf(root)) fragment = fragment.slice(root.length);
} else {
fragment = this.getHash();
}
}
return fragment.replace(routeStripper, '');
},
// Start the hash change handling, returning `true` if the current URL matches
// an existing route, and `false` otherwise.
start: function(options) {
if (History.started) throw new Error("Backbone.history has already been started");
History.started = true;
// Figure out the initial configuration. Do we need an iframe?
// Is pushState desired ... is it available?
this.options = _.extend({root: '/'}, this.options, options);
this.root = this.options.root;
this._wantsHashChange = this.options.hashChange !== false;
this._wantsPushState = !!this.options.pushState;
this._hasPushState = !!(this.options.pushState && this.history && this.history.pushState);
var fragment = this.getFragment();
var docMode = document.documentMode;
var oldIE = (isExplorer.exec(navigator.userAgent.toLowerCase()) && (!docMode || docMode <= 7));
// Normalize root to always include a leading and trailing slash.
this.root = ('/' + this.root + '/').replace(rootStripper, '/');
if (oldIE && this._wantsHashChange) {
var frame = Backbone.$('<iframe src="javascript:0" tabindex="-1">');
this.iframe = frame.hide().appendTo('body')[0].contentWindow;
this.navigate(fragment);
}
// Depending on whether we're using pushState or hashes, and whether
// 'onhashchange' is supported, determine how we check the URL state.
if (this._hasPushState) {
Backbone.$(window).on('popstate', this.checkUrl);
} else if (this._wantsHashChange && ('onhashchange' in window) && !oldIE) {
Backbone.$(window).on('hashchange', this.checkUrl);
} else if (this._wantsHashChange) {
this._checkUrlInterval = setInterval(this.checkUrl, this.interval);
}
// Determine if we need to change the base url, for a pushState link
// opened by a non-pushState browser.
this.fragment = fragment;
var loc = this.location;
// Transition from hashChange to pushState or vice versa if both are
// requested.
if (this._wantsHashChange && this._wantsPushState) {
// If we've started off with a route from a `pushState`-enabled
// browser, but we're currently in a browser that doesn't support it...
if (!this._hasPushState && !this.atRoot()) {
this.fragment = this.getFragment(null, true);
this.location.replace(this.root + '#' + this.fragment);
// Return immediately as browser will do redirect to new url
return true;
// Or if we've started out with a hash-based route, but we're currently
// in a browser where it could be `pushState`-based instead...
} else if (this._hasPushState && this.atRoot() && loc.hash) {
this.fragment = this.getHash().replace(routeStripper, '');
this.history.replaceState({}, document.title, this.root + this.fragment);
}
}
if (!this.options.silent) return this.loadUrl();
},
// Disable Backbone.history, perhaps temporarily. Not useful in a real app,
// but possibly useful for unit testing Routers.
stop: function() {
Backbone.$(window).off('popstate', this.checkUrl).off('hashchange', this.checkUrl);
if (this._checkUrlInterval) clearInterval(this._checkUrlInterval);
History.started = false;
},
// Add a route to be tested when the fragment changes. Routes added later
// may override previous routes.
route: function(route, callback) {
this.handlers.unshift({route: route, callback: callback});
},
// Checks the current URL to see if it has changed, and if it has,
// calls `loadUrl`, normalizing across the hidden iframe.
checkUrl: function(e) {
var current = this.getFragment();
if (current === this.fragment && this.iframe) {
current = this.getFragment(this.getHash(this.iframe));
}
if (current === this.fragment) return false;
if (this.iframe) this.navigate(current);
this.loadUrl();
},
// Attempt to load the current URL fragment. If a route succeeds with a
// match, returns `true`. If no defined routes matches the fragment,
// returns `false`.
loadUrl: function(fragment) {
fragment = this.fragment = this.getFragment(fragment);
return _.any(this.handlers, function(handler) {
if (handler.route.test(fragment)) {
handler.callback(fragment);
return true;
}
});
},
// Save a fragment into the hash history, or replace the URL state if the
// 'replace' option is passed. You are responsible for properly URL-encoding
// the fragment in advance.
//
// The options object can contain `trigger: true` if you wish to have the
// route callback be fired (not usually desirable), or `replace: true`, if
// you wish to modify the current URL without adding an entry to the history.
navigate: function(fragment, options) {
if (!History.started) return false;
if (!options || options === true) options = {trigger: !!options};
var url = this.root + (fragment = this.getFragment(fragment || ''));
// Strip the hash for matching.
fragment = fragment.replace(pathStripper, '');
if (this.fragment === fragment) return;
this.fragment = fragment;
// Don't include a trailing slash on the root.
if (fragment === '' && url !== '/') url = url.slice(0, -1);
// If pushState is available, we use it to set the fragment as a real URL.
if (this._hasPushState) {
this.history[options.replace ? 'replaceState' : 'pushState']({}, document.title, url);
// If hash changes haven't been explicitly disabled, update the hash
// fragment to store history.
} else if (this._wantsHashChange) {
this._updateHash(this.location, fragment, options.replace);
if (this.iframe && (fragment !== this.getFragment(this.getHash(this.iframe)))) {
// Opening and closing the iframe tricks IE7 and earlier to push a
// history entry on hash-tag change. When replace is true, we don't
// want this.
if(!options.replace) this.iframe.document.open().close();
this._updateHash(this.iframe.location, fragment, options.replace);
}
// If you've told us that you explicitly don't want fallback hashchange-
// based history, then `navigate` becomes a page refresh.
} else {
return this.location.assign(url);
}
if (options.trigger) return this.loadUrl(fragment);
},
// Update the hash location, either replacing the current entry, or adding
// a new one to the browser history.
_updateHash: function(location, fragment, replace) {
if (replace) {
var href = location.href.replace(/(javascript:|#).*$/, '');
location.replace(href + '#' + fragment);
} else {
// Some browsers require that `hash` contains a leading #.
location.hash = '#' + fragment;
}
}
});
// Create the default Backbone.history.
Backbone.history = new History;
// Helpers
// -------
// Helper function to correctly set up the prototype chain, for subclasses.
// Similar to `goog.inherits`, but uses a hash of prototype properties and
// class properties to be extended.
var extend = function(protoProps, staticProps) {
var parent = this;
var child;
// The constructor function for the new subclass is either defined by you
// (the "constructor" property in your `extend` definition), or defaulted
// by us to simply call the parent's constructor.
if (protoProps && _.has(protoProps, 'constructor')) {
child = protoProps.constructor;
} else {
child = function(){ return parent.apply(this, arguments); };
}
// Add static properties to the constructor function, if supplied.
_.extend(child, parent, staticProps);
// Set the prototype chain to inherit from `parent`, without calling
// `parent`'s constructor function.
var Surrogate = function(){ this.constructor = child; };
Surrogate.prototype = parent.prototype;
child.prototype = new Surrogate;
// Add prototype properties (instance properties) to the subclass,
// if supplied.
if (protoProps) _.extend(child.prototype, protoProps);
// Set a convenience property in case the parent's prototype is needed
// later.
child.__super__ = parent.prototype;
return child;
};
// Set up inheritance for the model, collection, router, view and history.
Model.extend = Collection.extend = Router.extend = View.extend = History.extend = extend;
// Throw an error when a URL is needed, and none is supplied.
var urlError = function() {
throw new Error('A "url" property or function must be specified');
};
// Wrap an optional error callback with a fallback error event.
var wrapError = function(model, options) {
var error = options.error;
options.error = function(resp) {
if (error) error(model, resp, options);
model.trigger('error', model, resp, options);
};
};
return Backbone;
}));
},{"underscore":16}],15:[function(require,module,exports){
/*!
* jQuery JavaScript Library v1.11.1
* http://jquery.com/
*
* Includes Sizzle.js
* http://sizzlejs.com/
*
* Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2014-05-01T17:42Z
*/
(function( global, factory ) {
if ( typeof module === "object" && typeof module.exports === "object" ) {
// For CommonJS and CommonJS-like environments where a proper window is present,
// execute the factory and get jQuery
// For environments that do not inherently posses a window with a document
// (such as Node.js), expose a jQuery-making factory as module.exports
// This accentuates the need for the creation of a real window
// e.g. var jQuery = require("jquery")(window);
// See ticket #14549 for more info
module.exports = global.document ?
factory( global, true ) :
function( w ) {
if ( !w.document ) {
throw new Error( "jQuery requires a window with a document" );
}
return factory( w );
};
} else {
factory( global );
}
// Pass this if window is not defined yet
}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
// Can't do this because several apps including ASP.NET trace
// the stack via arguments.caller.callee and Firefox dies if
// you try to trace through "use strict" call chains. (#13335)
// Support: Firefox 18+
//
var deletedIds = [];
var slice = deletedIds.slice;
var concat = deletedIds.concat;
var push = deletedIds.push;
var indexOf = deletedIds.indexOf;
var class2type = {};
var toString = class2type.toString;
var hasOwn = class2type.hasOwnProperty;
var support = {};
var
version = "1.11.1",
// Define a local copy of jQuery
jQuery = function( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
// Need init if jQuery is called (just allow error to be thrown if not included)
return new jQuery.fn.init( selector, context );
},
// Support: Android<4.1, IE<9
// Make sure we trim BOM and NBSP
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
// Matches dashed string for camelizing
rmsPrefix = /^-ms-/,
rdashAlpha = /-([\da-z])/gi,
// Used by jQuery.camelCase as callback to replace()
fcamelCase = function( all, letter ) {
return letter.toUpperCase();
};
jQuery.fn = jQuery.prototype = {
// The current version of jQuery being used
jquery: version,
constructor: jQuery,
// Start with an empty selector
selector: "",
// The default length of a jQuery object is 0
length: 0,
toArray: function() {
return slice.call( this );
},
// Get the Nth element in the matched element set OR
// Get the whole matched element set as a clean array
get: function( num ) {
return num != null ?
// Return just the one element from the set
( num < 0 ? this[ num + this.length ] : this[ num ] ) :
// Return all the elements in a clean array
slice.call( this );
},
// Take an array of elements and push it onto the stack
// (returning the new matched element set)
pushStack: function( elems ) {
// Build a new jQuery matched element set
var ret = jQuery.merge( this.constructor(), elems );
// Add the old object onto the stack (as a reference)
ret.prevObject = this;
ret.context = this.context;
// Return the newly-formed element set
return ret;
},
// Execute a callback for every element in the matched set.
// (You can seed the arguments with an array of args, but this is
// only used internally.)
each: function( callback, args ) {
return jQuery.each( this, callback, args );
},
map: function( callback ) {
return this.pushStack( jQuery.map(this, function( elem, i ) {
return callback.call( elem, i, elem );
}));
},
slice: function() {
return this.pushStack( slice.apply( this, arguments ) );
},
first: function() {
return this.eq( 0 );
},
last: function() {
return this.eq( -1 );
},
eq: function( i ) {
var len = this.length,
j = +i + ( i < 0 ? len : 0 );
return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
},
end: function() {
return this.prevObject || this.constructor(null);
},
// For internal use only.
// Behaves like an Array's method, not like a jQuery method.
push: push,
sort: deletedIds.sort,
splice: deletedIds.splice
};
jQuery.extend = jQuery.fn.extend = function() {
var src, copyIsArray, copy, name, options, clone,
target = arguments[0] || {},
i = 1,
length = arguments.length,
deep = false;
// Handle a deep copy situation
if ( typeof target === "boolean" ) {
deep = target;
// skip the boolean and the target
target = arguments[ i ] || {};
i++;
}
// Handle case when target is a string or something (possible in deep copy)
if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
target = {};
}
// extend jQuery itself if only one argument is passed
if ( i === length ) {
target = this;
i--;
}
for ( ; i < length; i++ ) {
// Only deal with non-null/undefined values
if ( (options = arguments[ i ]) != null ) {
// Extend the base object
for ( name in options ) {
src = target[ name ];
copy = options[ name ];
// Prevent never-ending loop
if ( target === copy ) {
continue;
}
// Recurse if we're merging plain objects or arrays
if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
if ( copyIsArray ) {
copyIsArray = false;
clone = src && jQuery.isArray(src) ? src : [];
} else {
clone = src && jQuery.isPlainObject(src) ? src : {};
}
// Never move original objects, clone them
target[ name ] = jQuery.extend( deep, clone, copy );
// Don't bring in undefined values
} else if ( copy !== undefined ) {
target[ name ] = copy;
}
}
}
}
// Return the modified object
return target;
};
jQuery.extend({
// Unique for each copy of jQuery on the page
expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
// Assume jQuery is ready without the ready module
isReady: true,
error: function( msg ) {
throw new Error( msg );
},
noop: function() {},
// See test/unit/core.js for details concerning isFunction.
// Since version 1.3, DOM methods and functions like alert
// aren't supported. They return false on IE (#2968).
isFunction: function( obj ) {
return jQuery.type(obj) === "function";
},
isArray: Array.isArray || function( obj ) {
return jQuery.type(obj) === "array";
},
isWindow: function( obj ) {
/* jshint eqeqeq: false */
return obj != null && obj == obj.window;
},
isNumeric: function( obj ) {
// parseFloat NaNs numeric-cast false positives (null|true|false|"")
// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
// subtraction forces infinities to NaN
return !jQuery.isArray( obj ) && obj - parseFloat( obj ) >= 0;
},
isEmptyObject: function( obj ) {
var name;
for ( name in obj ) {
return false;
}
return true;
},
isPlainObject: function( obj ) {
var key;
// Must be an Object.
// Because of IE, we also have to check the presence of the constructor property.
// Make sure that DOM nodes and window objects don't pass through, as well
if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
return false;
}
try {
// Not own constructor property must be Object
if ( obj.constructor &&
!hasOwn.call(obj, "constructor") &&
!hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) {
return false;
}
} catch ( e ) {
// IE8,9 Will throw exceptions on certain host objects #9897
return false;
}
// Support: IE<9
// Handle iteration over inherited properties before own properties.
if ( support.ownLast ) {
for ( key in obj ) {
return hasOwn.call( obj, key );
}
}
// Own properties are enumerated firstly, so to speed up,
// if last one is own, then all properties are own.
for ( key in obj ) {}
return key === undefined || hasOwn.call( obj, key );
},
type: function( obj ) {
if ( obj == null ) {
return obj + "";
}
return typeof obj === "object" || typeof obj === "function" ?
class2type[ toString.call(obj) ] || "object" :
typeof obj;
},
// Evaluates a script in a global context
// Workarounds based on findings by Jim Driscoll
// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context
globalEval: function( data ) {
if ( data && jQuery.trim( data ) ) {
// We use execScript on Internet Explorer
// We use an anonymous function so that context is window
// rather than jQuery in Firefox
( window.execScript || function( data ) {
window[ "eval" ].call( window, data );
} )( data );
}
},
// Convert dashed to camelCase; used by the css and data modules
// Microsoft forgot to hump their vendor prefix (#9572)
camelCase: function( string ) {
return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
},
nodeName: function( elem, name ) {
return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
},
// args is for internal usage only
each: function( obj, callback, args ) {
var value,
i = 0,
length = obj.length,
isArray = isArraylike( obj );
if ( args ) {
if ( isArray ) {
for ( ; i < length; i++ ) {
value = callback.apply( obj[ i ], args );
if ( value === false ) {
break;
}
}
} else {
for ( i in obj ) {
value = callback.apply( obj[ i ], args );
if ( value === false ) {
break;
}
}
}
// A special, fast, case for the most common use of each
} else {
if ( isArray ) {
for ( ; i < length; i++ ) {
value = callback.call( obj[ i ], i, obj[ i ] );
if ( value === false ) {
break;
}
}
} else {
for ( i in obj ) {
value = callback.call( obj[ i ], i, obj[ i ] );
if ( value === false ) {
break;
}
}
}
}
return obj;
},
// Support: Android<4.1, IE<9
trim: function( text ) {
return text == null ?
"" :
( text + "" ).replace( rtrim, "" );
},
// results is for internal usage only
makeArray: function( arr, results ) {
var ret = results || [];
if ( arr != null ) {
if ( isArraylike( Object(arr) ) ) {
jQuery.merge( ret,
typeof arr === "string" ?
[ arr ] : arr
);
} else {
push.call( ret, arr );
}
}
return ret;
},
inArray: function( elem, arr, i ) {
var len;
if ( arr ) {
if ( indexOf ) {
return indexOf.call( arr, elem, i );
}
len = arr.length;
i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;
for ( ; i < len; i++ ) {
// Skip accessing in sparse arrays
if ( i in arr && arr[ i ] === elem ) {
return i;
}
}
}
return -1;
},
merge: function( first, second ) {
var len = +second.length,
j = 0,
i = first.length;
while ( j < len ) {
first[ i++ ] = second[ j++ ];
}
// Support: IE<9
// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)
if ( len !== len ) {
while ( second[j] !== undefined ) {
first[ i++ ] = second[ j++ ];
}
}
first.length = i;
return first;
},
grep: function( elems, callback, invert ) {
var callbackInverse,
matches = [],
i = 0,
length = elems.length,
callbackExpect = !invert;
// Go through the array, only saving the items
// that pass the validator function
for ( ; i < length; i++ ) {
callbackInverse = !callback( elems[ i ], i );
if ( callbackInverse !== callbackExpect ) {
matches.push( elems[ i ] );
}
}
return matches;
},
// arg is for internal usage only
map: function( elems, callback, arg ) {
var value,
i = 0,
length = elems.length,
isArray = isArraylike( elems ),
ret = [];
// Go through the array, translating each of the items to their new values
if ( isArray ) {
for ( ; i < length; i++ ) {
value = callback( elems[ i ], i, arg );
if ( value != null ) {
ret.push( value );
}
}
// Go through every key on the object,
} else {
for ( i in elems ) {
value = callback( elems[ i ], i, arg );
if ( value != null ) {
ret.push( value );
}
}
}
// Flatten any nested arrays
return concat.apply( [], ret );
},
// A global GUID counter for objects
guid: 1,
// Bind a function to a context, optionally partially applying any
// arguments.
proxy: function( fn, context ) {
var args, proxy, tmp;
if ( typeof context === "string" ) {
tmp = fn[ context ];
context = fn;
fn = tmp;
}
// Quick check to determine if target is callable, in the spec
// this throws a TypeError, but we will just return undefined.
if ( !jQuery.isFunction( fn ) ) {
return undefined;
}
// Simulated bind
args = slice.call( arguments, 2 );
proxy = function() {
return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
};
// Set the guid of unique handler to the same of original handler, so it can be removed
proxy.guid = fn.guid = fn.guid || jQuery.guid++;
return proxy;
},
now: function() {
return +( new Date() );
},
// jQuery.support is not used in Core but other projects attach their
// properties to it so it needs to exist.
support: support
});
// Populate the class2type map
jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
class2type[ "[object " + name + "]" ] = name.toLowerCase();
});
function isArraylike( obj ) {
var length = obj.length,
type = jQuery.type( obj );
if ( type === "function" || jQuery.isWindow( obj ) ) {
return false;
}
if ( obj.nodeType === 1 && length ) {
return true;
}
return type === "array" || length === 0 ||
typeof length === "number" && length > 0 && ( length - 1 ) in obj;
}
var Sizzle =
/*!
* Sizzle CSS Selector Engine v1.10.19
* http://sizzlejs.com/
*
* Copyright 2013 jQuery Foundation, Inc. and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2014-04-18
*/
(function( window ) {
var i,
support,
Expr,
getText,
isXML,
tokenize,
compile,
select,
outermostContext,
sortInput,
hasDuplicate,
// Local document vars
setDocument,
document,
docElem,
documentIsHTML,
rbuggyQSA,
rbuggyMatches,
matches,
contains,
// Instance-specific data
expando = "sizzle" + -(new Date()),
preferredDoc = window.document,
dirruns = 0,
done = 0,
classCache = createCache(),
tokenCache = createCache(),
compilerCache = createCache(),
sortOrder = function( a, b ) {
if ( a === b ) {
hasDuplicate = true;
}
return 0;
},
// General-purpose constants
strundefined = typeof undefined,
MAX_NEGATIVE = 1 << 31,
// Instance methods
hasOwn = ({}).hasOwnProperty,
arr = [],
pop = arr.pop,
push_native = arr.push,
push = arr.push,
slice = arr.slice,
// Use a stripped-down indexOf if we can't use a native one
indexOf = arr.indexOf || function( elem ) {
var i = 0,
len = this.length;
for ( ; i < len; i++ ) {
if ( this[i] === elem ) {
return i;
}
}
return -1;
},
booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
// Regular expressions
// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
whitespace = "[\\x20\\t\\r\\n\\f]",
// http://www.w3.org/TR/css3-syntax/#characters
characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
// Loosely modeled on CSS identifier characters
// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
identifier = characterEncoding.replace( "w", "w#" ),
// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
attributes = "\\[" + whitespace + "*(" + characterEncoding + ")(?:" + whitespace +
// Operator (capture 2)
"*([*^$|!~]?=)" + whitespace +
// "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
"*\\]",
pseudos = ":(" + characterEncoding + ")(?:\\((" +
// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
// 1. quoted (capture 3; capture 4 or capture 5)
"('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
// 2. simple (capture 6)
"((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
// 3. anything else (capture 2)
".*" +
")\\)|)",
// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
rpseudo = new RegExp( pseudos ),
ridentifier = new RegExp( "^" + identifier + "$" ),
matchExpr = {
"ID": new RegExp( "^#(" + characterEncoding + ")" ),
"CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
"TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
"ATTR": new RegExp( "^" + attributes ),
"PSEUDO": new RegExp( "^" + pseudos ),
"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
// For use in libraries implementing .is()
// We use this for POS matching in `select`
"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
},
rinputs = /^(?:input|select|textarea|button)$/i,
rheader = /^h\d$/i,
rnative = /^[^{]+\{\s*\[native \w/,
// Easily-parseable/retrievable ID or TAG or CLASS selectors
rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
rsibling = /[+~]/,
rescape = /'|\\/g,
// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
funescape = function( _, escaped, escapedWhitespace ) {
var high = "0x" + escaped - 0x10000;
// NaN means non-codepoint
// Support: Firefox<24
// Workaround erroneous numeric interpretation of +"0x"
return high !== high || escapedWhitespace ?
escaped :
high < 0 ?
// BMP codepoint
String.fromCharCode( high + 0x10000 ) :
// Supplemental Plane codepoint (surrogate pair)
String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
};
// Optimize for push.apply( _, NodeList )
try {
push.apply(
(arr = slice.call( preferredDoc.childNodes )),
preferredDoc.childNodes
);
// Support: Android<4.0
// Detect silently failing push.apply
arr[ preferredDoc.childNodes.length ].nodeType;
} catch ( e ) {
push = { apply: arr.length ?
// Leverage slice if possible
function( target, els ) {
push_native.apply( target, slice.call(els) );
} :
// Support: IE<9
// Otherwise append directly
function( target, els ) {
var j = target.length,
i = 0;
// Can't trust NodeList.length
while ( (target[j++] = els[i++]) ) {}
target.length = j - 1;
}
};
}
function Sizzle( selector, context, results, seed ) {
var match, elem, m, nodeType,
// QSA vars
i, groups, old, nid, newContext, newSelector;
if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
setDocument( context );
}
context = context || document;
results = results || [];
if ( !selector || typeof selector !== "string" ) {
return results;
}
if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) {
return [];
}
if ( documentIsHTML && !seed ) {
// Shortcuts
if ( (match = rquickExpr.exec( selector )) ) {
// Speed-up: Sizzle("#ID")
if ( (m = match[1]) ) {
if ( nodeType === 9 ) {
elem = context.getElementById( m );
// Check parentNode to catch when Blackberry 4.6 returns
// nodes that are no longer in the document (jQuery #6963)
if ( elem && elem.parentNode ) {
// Handle the case where IE, Opera, and Webkit return items
// by name instead of ID
if ( elem.id === m ) {
results.push( elem );
return results;
}
} else {
return results;
}
} else {
// Context is not a document
if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
contains( context, elem ) && elem.id === m ) {
results.push( elem );
return results;
}
}
// Speed-up: Sizzle("TAG")
} else if ( match[2] ) {
push.apply( results, context.getElementsByTagName( selector ) );
return results;
// Speed-up: Sizzle(".CLASS")
} else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) {
push.apply( results, context.getElementsByClassName( m ) );
return results;
}
}
// QSA path
if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
nid = old = expando;
newContext = context;
newSelector = nodeType === 9 && selector;
// qSA works strangely on Element-rooted queries
// We can work around this by specifying an extra ID on the root
// and working up from there (Thanks to Andrew Dupont for the technique)
// IE 8 doesn't work on object elements
if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
groups = tokenize( selector );
if ( (old = context.getAttribute("id")) ) {
nid = old.replace( rescape, "\\$&" );
} else {
context.setAttribute( "id", nid );
}
nid = "[id='" + nid + "'] ";
i = groups.length;
while ( i-- ) {
groups[i] = nid + toSelector( groups[i] );
}
newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;
newSelector = groups.join(",");
}
if ( newSelector ) {
try {
push.apply( results,
newContext.querySelectorAll( newSelector )
);
return results;
} catch(qsaError) {
} finally {
if ( !old ) {
context.removeAttribute("id");
}
}
}
}
}
// All others
return select( selector.replace( rtrim, "$1" ), context, results, seed );
}
/**
* Create key-value caches of limited size
* @returns {Function(string, Object)} Returns the Object data after storing it on itself with
* property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
* deleting the oldest entry
*/
function createCache() {
var keys = [];
function cache( key, value ) {
// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
if ( keys.push( key + " " ) > Expr.cacheLength ) {
// Only keep the most recent entries
delete cache[ keys.shift() ];
}
return (cache[ key + " " ] = value);
}
return cache;
}
/**
* Mark a function for special use by Sizzle
* @param {Function} fn The function to mark
*/
function markFunction( fn ) {
fn[ expando ] = true;
return fn;
}
/**
* Support testing using an element
* @param {Function} fn Passed the created div and expects a boolean result
*/
function assert( fn ) {
var div = document.createElement("div");
try {
return !!fn( div );
} catch (e) {
return false;
} finally {
// Remove from its parent by default
if ( div.parentNode ) {
div.parentNode.removeChild( div );
}
// release memory in IE
div = null;
}
}
/**
* Adds the same handler for all of the specified attrs
* @param {String} attrs Pipe-separated list of attributes
* @param {Function} handler The method that will be applied
*/
function addHandle( attrs, handler ) {
var arr = attrs.split("|"),
i = attrs.length;
while ( i-- ) {
Expr.attrHandle[ arr[i] ] = handler;
}
}
/**
* Checks document order of two siblings
* @param {Element} a
* @param {Element} b
* @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
*/
function siblingCheck( a, b ) {
var cur = b && a,
diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
( ~b.sourceIndex || MAX_NEGATIVE ) -
( ~a.sourceIndex || MAX_NEGATIVE );
// Use IE sourceIndex if available on both nodes
if ( diff ) {
return diff;
}
// Check if b follows a
if ( cur ) {
while ( (cur = cur.nextSibling) ) {
if ( cur === b ) {
return -1;
}
}
}
return a ? 1 : -1;
}
/**
* Returns a function to use in pseudos for input types
* @param {String} type
*/
function createInputPseudo( type ) {
return function( elem ) {
var name = elem.nodeName.toLowerCase();
return name === "input" && elem.type === type;
};
}
/**
* Returns a function to use in pseudos for buttons
* @param {String} type
*/
function createButtonPseudo( type ) {
return function( elem ) {
var name = elem.nodeName.toLowerCase();
return (name === "input" || name === "button") && elem.type === type;
};
}
/**
* Returns a function to use in pseudos for positionals
* @param {Function} fn
*/
function createPositionalPseudo( fn ) {
return markFunction(function( argument ) {
argument = +argument;
return markFunction(function( seed, matches ) {
var j,
matchIndexes = fn( [], seed.length, argument ),
i = matchIndexes.length;
// Match elements found at the specified indexes
while ( i-- ) {
if ( seed[ (j = matchIndexes[i]) ] ) {
seed[j] = !(matches[j] = seed[j]);
}
}
});
});
}
/**
* Checks a node for validity as a Sizzle context
* @param {Element|Object=} context
* @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
*/
function testContext( context ) {
return context && typeof context.getElementsByTagName !== strundefined && context;
}
// Expose support vars for convenience
support = Sizzle.support = {};
/**
* Detects XML nodes
* @param {Element|Object} elem An element or a document
* @returns {Boolean} True iff elem is a non-HTML XML node
*/
isXML = Sizzle.isXML = function( elem ) {
// documentElement is verified for cases where it doesn't yet exist
// (such as loading iframes in IE - #4833)
var documentElement = elem && (elem.ownerDocument || elem).documentElement;
return documentElement ? documentElement.nodeName !== "HTML" : false;
};
/**
* Sets document-related variables once based on the current document
* @param {Element|Object} [doc] An element or document object to use to set the document
* @returns {Object} Returns the current document
*/
setDocument = Sizzle.setDocument = function( node ) {
var hasCompare,
doc = node ? node.ownerDocument || node : preferredDoc,
parent = doc.defaultView;
// If no document and documentElement is available, return
if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
return document;
}
// Set our document
document = doc;
docElem = doc.documentElement;
// Support tests
documentIsHTML = !isXML( doc );
// Support: IE>8
// If iframe document is assigned to "document" variable and if iframe has been reloaded,
// IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936
// IE6-8 do not support the defaultView property so parent will be undefined
if ( parent && parent !== parent.top ) {
// IE11 does not have attachEvent, so all must suffer
if ( parent.addEventListener ) {
parent.addEventListener( "unload", function() {
setDocument();
}, false );
} else if ( parent.attachEvent ) {
parent.attachEvent( "onunload", function() {
setDocument();
});
}
}
/* Attributes
---------------------------------------------------------------------- */
// Support: IE<8
// Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans)
support.attributes = assert(function( div ) {
div.className = "i";
return !div.getAttribute("className");
});
/* getElement(s)By*
---------------------------------------------------------------------- */
// Check if getElementsByTagName("*") returns only elements
support.getElementsByTagName = assert(function( div ) {
div.appendChild( doc.createComment("") );
return !div.getElementsByTagName("*").length;
});
// Check if getElementsByClassName can be trusted
support.getElementsByClassName = rnative.test( doc.getElementsByClassName ) && assert(function( div ) {
div.innerHTML = "<div class='a'></div><div class='a i'></div>";
// Support: Safari<4
// Catch class over-caching
div.firstChild.className = "i";
// Support: Opera<10
// Catch gEBCN failure to find non-leading classes
return div.getElementsByClassName("i").length === 2;
});
// Support: IE<10
// Check if getElementById returns elements by name
// The broken getElementById methods don't pick up programatically-set names,
// so use a roundabout getElementsByName test
support.getById = assert(function( div ) {
docElem.appendChild( div ).id = expando;
return !doc.getElementsByName || !doc.getElementsByName( expando ).length;
});
// ID find and filter
if ( support.getById ) {
Expr.find["ID"] = function( id, context ) {
if ( typeof context.getElementById !== strundefined && documentIsHTML ) {
var m = context.getElementById( id );
// Check parentNode to catch when Blackberry 4.6 returns
// nodes that are no longer in the document #6963
return m && m.parentNode ? [ m ] : [];
}
};
Expr.filter["ID"] = function( id ) {
var attrId = id.replace( runescape, funescape );
return function( elem ) {
return elem.getAttribute("id") === attrId;
};
};
} else {
// Support: IE6/7
// getElementById is not reliable as a find shortcut
delete Expr.find["ID"];
Expr.filter["ID"] = function( id ) {
var attrId = id.replace( runescape, funescape );
return function( elem ) {
var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id");
return node && node.value === attrId;
};
};
}
// Tag
Expr.find["TAG"] = support.getElementsByTagName ?
function( tag, context ) {
if ( typeof context.getElementsByTagName !== strundefined ) {
return context.getElementsByTagName( tag );
}
} :
function( tag, context ) {
var elem,
tmp = [],
i = 0,
results = context.getElementsByTagName( tag );
// Filter out possible comments
if ( tag === "*" ) {
while ( (elem = results[i++]) ) {
if ( elem.nodeType === 1 ) {
tmp.push( elem );
}
}
return tmp;
}
return results;
};
// Class
Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) {
return context.getElementsByClassName( className );
}
};
/* QSA/matchesSelector
---------------------------------------------------------------------- */
// QSA and matchesSelector support
// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
rbuggyMatches = [];
// qSa(:focus) reports false when true (Chrome 21)
// We allow this because of a bug in IE8/9 that throws an error
// whenever `document.activeElement` is accessed on an iframe
// So, we allow :focus to pass through QSA all the time to avoid the IE error
// See http://bugs.jquery.com/ticket/13378
rbuggyQSA = [];
if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {
// Build QSA regex
// Regex strategy adopted from Diego Perini
assert(function( div ) {
// Select is set to empty string on purpose
// This is to test IE's treatment of not explicitly
// setting a boolean content attribute,
// since its presence should be enough
// http://bugs.jquery.com/ticket/12359
div.innerHTML = "<select msallowclip=''><option selected=''></option></select>";
// Support: IE8, Opera 11-12.16
// Nothing should be selected when empty strings follow ^= or $= or *=
// The test attribute must be unknown in Opera but "safe" for WinRT
// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
if ( div.querySelectorAll("[msallowclip^='']").length ) {
rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
}
// Support: IE8
// Boolean attributes and "value" are not treated correctly
if ( !div.querySelectorAll("[selected]").length ) {
rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
}
// Webkit/Opera - :checked should return selected option elements
// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
// IE8 throws error here and will not see later tests
if ( !div.querySelectorAll(":checked").length ) {
rbuggyQSA.push(":checked");
}
});
assert(function( div ) {
// Support: Windows 8 Native Apps
// The type and name attributes are restricted during .innerHTML assignment
var input = doc.createElement("input");
input.setAttribute( "type", "hidden" );
div.appendChild( input ).setAttribute( "name", "D" );
// Support: IE8
// Enforce case-sensitivity of name attribute
if ( div.querySelectorAll("[name=d]").length ) {
rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
}
// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
// IE8 throws error here and will not see later tests
if ( !div.querySelectorAll(":enabled").length ) {
rbuggyQSA.push( ":enabled", ":disabled" );
}
// Opera 10-11 does not throw on post-comma invalid pseudos
div.querySelectorAll("*,:x");
rbuggyQSA.push(",.*:");
});
}
if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
docElem.webkitMatchesSelector ||
docElem.mozMatchesSelector ||
docElem.oMatchesSelector ||
docElem.msMatchesSelector) )) ) {
assert(function( div ) {
// Check to see if it's possible to do matchesSelector
// on a disconnected node (IE 9)
support.disconnectedMatch = matches.call( div, "div" );
// This should fail with an exception
// Gecko does not error, returns false instead
matches.call( div, "[s!='']:x" );
rbuggyMatches.push( "!=", pseudos );
});
}
rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
/* Contains
---------------------------------------------------------------------- */
hasCompare = rnative.test( docElem.compareDocumentPosition );
// Element contains another
// Purposefully does not implement inclusive descendent
// As in, an element does not contain itself
contains = hasCompare || rnative.test( docElem.contains ) ?
function( a, b ) {
var adown = a.nodeType === 9 ? a.documentElement : a,
bup = b && b.parentNode;
return a === bup || !!( bup && bup.nodeType === 1 && (
adown.contains ?
adown.contains( bup ) :
a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
));
} :
function( a, b ) {
if ( b ) {
while ( (b = b.parentNode) ) {
if ( b === a ) {
return true;
}
}
}
return false;
};
/* Sorting
---------------------------------------------------------------------- */
// Document order sorting
sortOrder = hasCompare ?
function( a, b ) {
// Flag for duplicate removal
if ( a === b ) {
hasDuplicate = true;
return 0;
}
// Sort on method existence if only one input has compareDocumentPosition
var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
if ( compare ) {
return compare;
}
// Calculate position if both inputs belong to the same document
compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
a.compareDocumentPosition( b ) :
// Otherwise we know they are disconnected
1;
// Disconnected nodes
if ( compare & 1 ||
(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
// Choose the first element that is related to our preferred document
if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
return -1;
}
if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
return 1;
}
// Maintain original order
return sortInput ?
( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
0;
}
return compare & 4 ? -1 : 1;
} :
function( a, b ) {
// Exit early if the nodes are identical
if ( a === b ) {
hasDuplicate = true;
return 0;
}
var cur,
i = 0,
aup = a.parentNode,
bup = b.parentNode,
ap = [ a ],
bp = [ b ];
// Parentless nodes are either documents or disconnected
if ( !aup || !bup ) {
return a === doc ? -1 :
b === doc ? 1 :
aup ? -1 :
bup ? 1 :
sortInput ?
( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
0;
// If the nodes are siblings, we can do a quick check
} else if ( aup === bup ) {
return siblingCheck( a, b );
}
// Otherwise we need full lists of their ancestors for comparison
cur = a;
while ( (cur = cur.parentNode) ) {
ap.unshift( cur );
}
cur = b;
while ( (cur = cur.parentNode) ) {
bp.unshift( cur );
}
// Walk down the tree looking for a discrepancy
while ( ap[i] === bp[i] ) {
i++;
}
return i ?
// Do a sibling check if the nodes have a common ancestor
siblingCheck( ap[i], bp[i] ) :
// Otherwise nodes in our document sort first
ap[i] === preferredDoc ? -1 :
bp[i] === preferredDoc ? 1 :
0;
};
return doc;
};
Sizzle.matches = function( expr, elements ) {
return Sizzle( expr, null, null, elements );
};
Sizzle.matchesSelector = function( elem, expr ) {
// Set document vars if needed
if ( ( elem.ownerDocument || elem ) !== document ) {
setDocument( elem );
}
// Make sure that attribute selectors are quoted
expr = expr.replace( rattributeQuotes, "='$1']" );
if ( support.matchesSelector && documentIsHTML &&
( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
try {
var ret = matches.call( elem, expr );
// IE 9's matchesSelector returns false on disconnected nodes
if ( ret || support.disconnectedMatch ||
// As well, disconnected nodes are said to be in a document
// fragment in IE 9
elem.document && elem.document.nodeType !== 11 ) {
return ret;
}
} catch(e) {}
}
return Sizzle( expr, document, null, [ elem ] ).length > 0;
};
Sizzle.contains = function( context, elem ) {
// Set document vars if needed
if ( ( context.ownerDocument || context ) !== document ) {
setDocument( context );
}
return contains( context, elem );
};
Sizzle.attr = function( elem, name ) {
// Set document vars if needed
if ( ( elem.ownerDocument || elem ) !== document ) {
setDocument( elem );
}
var fn = Expr.attrHandle[ name.toLowerCase() ],
// Don't get fooled by Object.prototype properties (jQuery #13807)
val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
fn( elem, name, !documentIsHTML ) :
undefined;
return val !== undefined ?
val :
support.attributes || !documentIsHTML ?
elem.getAttribute( name ) :
(val = elem.getAttributeNode(name)) && val.specified ?
val.value :
null;
};
Sizzle.error = function( msg ) {
throw new Error( "Syntax error, unrecognized expression: " + msg );
};
/**
* Document sorting and removing duplicates
* @param {ArrayLike} results
*/
Sizzle.uniqueSort = function( results ) {
var elem,
duplicates = [],
j = 0,
i = 0;
// Unless we *know* we can detect duplicates, assume their presence
hasDuplicate = !support.detectDuplicates;
sortInput = !support.sortStable && results.slice( 0 );
results.sort( sortOrder );
if ( hasDuplicate ) {
while ( (elem = results[i++]) ) {
if ( elem === results[ i ] ) {
j = duplicates.push( i );
}
}
while ( j-- ) {
results.splice( duplicates[ j ], 1 );
}
}
// Clear input after sorting to release objects
// See https://github.com/jquery/sizzle/pull/225
sortInput = null;
return results;
};
/**
* Utility function for retrieving the text value of an array of DOM nodes
* @param {Array|Element} elem
*/
getText = Sizzle.getText = function( elem ) {
var node,
ret = "",
i = 0,
nodeType = elem.nodeType;
if ( !nodeType ) {
// If no nodeType, this is expected to be an array
while ( (node = elem[i++]) ) {
// Do not traverse comment nodes
ret += getText( node );
}
} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
// Use textContent for elements
// innerText usage removed for consistency of new lines (jQuery #11153)
if ( typeof elem.textContent === "string" ) {
return elem.textContent;
} else {
// Traverse its children
for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
ret += getText( elem );
}
}
} else if ( nodeType === 3 || nodeType === 4 ) {
return elem.nodeValue;
}
// Do not include comment or processing instruction nodes
return ret;
};
Expr = Sizzle.selectors = {
// Can be adjusted by the user
cacheLength: 50,
createPseudo: markFunction,
match: matchExpr,
attrHandle: {},
find: {},
relative: {
">": { dir: "parentNode", first: true },
" ": { dir: "parentNode" },
"+": { dir: "previousSibling", first: true },
"~": { dir: "previousSibling" }
},
preFilter: {
"ATTR": function( match ) {
match[1] = match[1].replace( runescape, funescape );
// Move the given value to match[3] whether quoted or unquoted
match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
if ( match[2] === "~=" ) {
match[3] = " " + match[3] + " ";
}
return match.slice( 0, 4 );
},
"CHILD": function( match ) {
/* matches from matchExpr["CHILD"]
1 type (only|nth|...)
2 what (child|of-type)
3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
4 xn-component of xn+y argument ([+-]?\d*n|)
5 sign of xn-component
6 x of xn-component
7 sign of y-component
8 y of y-component
*/
match[1] = match[1].toLowerCase();
if ( match[1].slice( 0, 3 ) === "nth" ) {
// nth-* requires argument
if ( !match[3] ) {
Sizzle.error( match[0] );
}
// numeric x and y parameters for Expr.filter.CHILD
// remember that false/true cast respectively to 0/1
match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
// other types prohibit arguments
} else if ( match[3] ) {
Sizzle.error( match[0] );
}
return match;
},
"PSEUDO": function( match ) {
var excess,
unquoted = !match[6] && match[2];
if ( matchExpr["CHILD"].test( match[0] ) ) {
return null;
}
// Accept quoted arguments as-is
if ( match[3] ) {
match[2] = match[4] || match[5] || "";
// Strip excess characters from unquoted arguments
} else if ( unquoted && rpseudo.test( unquoted ) &&
// Get excess from tokenize (recursively)
(excess = tokenize( unquoted, true )) &&
// advance to the next closing parenthesis
(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
// excess is a negative index
match[0] = match[0].slice( 0, excess );
match[2] = unquoted.slice( 0, excess );
}
// Return only captures needed by the pseudo filter method (type and argument)
return match.slice( 0, 3 );
}
},
filter: {
"TAG": function( nodeNameSelector ) {
var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
return nodeNameSelector === "*" ?
function() { return true; } :
function( elem ) {
return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
};
},
"CLASS": function( className ) {
var pattern = classCache[ className + " " ];
return pattern ||
(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
classCache( className, function( elem ) {
return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" );
});
},
"ATTR": function( name, operator, check ) {
return function( elem ) {
var result = Sizzle.attr( elem, name );
if ( result == null ) {
return operator === "!=";
}
if ( !operator ) {
return true;
}
result += "";
return operator === "=" ? result === check :
operator === "!=" ? result !== check :
operator === "^=" ? check && result.indexOf( check ) === 0 :
operator === "*=" ? check && result.indexOf( check ) > -1 :
operator === "$=" ? check && result.slice( -check.length ) === check :
operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 :
operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
false;
};
},
"CHILD": function( type, what, argument, first, last ) {
var simple = type.slice( 0, 3 ) !== "nth",
forward = type.slice( -4 ) !== "last",
ofType = what === "of-type";
return first === 1 && last === 0 ?
// Shortcut for :nth-*(n)
function( elem ) {
return !!elem.parentNode;
} :
function( elem, context, xml ) {
var cache, outerCache, node, diff, nodeIndex, start,
dir = simple !== forward ? "nextSibling" : "previousSibling",
parent = elem.parentNode,
name = ofType && elem.nodeName.toLowerCase(),
useCache = !xml && !ofType;
if ( parent ) {
// :(first|last|only)-(child|of-type)
if ( simple ) {
while ( dir ) {
node = elem;
while ( (node = node[ dir ]) ) {
if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
return false;
}
}
// Reverse direction for :only-* (if we haven't yet done so)
start = dir = type === "only" && !start && "nextSibling";
}
return true;
}
start = [ forward ? parent.firstChild : parent.lastChild ];
// non-xml :nth-child(...) stores cache data on `parent`
if ( forward && useCache ) {
// Seek `elem` from a previously-cached index
outerCache = parent[ expando ] || (parent[ expando ] = {});
cache = outerCache[ type ] || [];
nodeIndex = cache[0] === dirruns && cache[1];
diff = cache[0] === dirruns && cache[2];
node = nodeIndex && parent.childNodes[ nodeIndex ];
while ( (node = ++nodeIndex && node && node[ dir ] ||
// Fallback to seeking `elem` from the start
(diff = nodeIndex = 0) || start.pop()) ) {
// When found, cache indexes on `parent` and break
if ( node.nodeType === 1 && ++diff && node === elem ) {
outerCache[ type ] = [ dirruns, nodeIndex, diff ];
break;
}
}
// Use previously-cached element index if available
} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
diff = cache[1];
// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)
} else {
// Use the same loop as above to seek `elem` from the start
while ( (node = ++nodeIndex && node && node[ dir ] ||
(diff = nodeIndex = 0) || start.pop()) ) {
if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
// Cache the index of each encountered element
if ( useCache ) {
(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
}
if ( node === elem ) {
break;
}
}
}
}
// Incorporate the offset, then check against cycle size
diff -= last;
return diff === first || ( diff % first === 0 && diff / first >= 0 );
}
};
},
"PSEUDO": function( pseudo, argument ) {
// pseudo-class names are case-insensitive
// http://www.w3.org/TR/selectors/#pseudo-classes
// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
// Remember that setFilters inherits from pseudos
var args,
fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
Sizzle.error( "unsupported pseudo: " + pseudo );
// The user may use createPseudo to indicate that
// arguments are needed to create the filter function
// just as Sizzle does
if ( fn[ expando ] ) {
return fn( argument );
}
// But maintain support for old signatures
if ( fn.length > 1 ) {
args = [ pseudo, pseudo, "", argument ];
return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
markFunction(function( seed, matches ) {
var idx,
matched = fn( seed, argument ),
i = matched.length;
while ( i-- ) {
idx = indexOf.call( seed, matched[i] );
seed[ idx ] = !( matches[ idx ] = matched[i] );
}
}) :
function( elem ) {
return fn( elem, 0, args );
};
}
return fn;
}
},
pseudos: {
// Potentially complex pseudos
"not": markFunction(function( selector ) {
// Trim the selector passed to compile
// to avoid treating leading and trailing
// spaces as combinators
var input = [],
results = [],
matcher = compile( selector.replace( rtrim, "$1" ) );
return matcher[ expando ] ?
markFunction(function( seed, matches, context, xml ) {
var elem,
unmatched = matcher( seed, null, xml, [] ),
i = seed.length;
// Match elements unmatched by `matcher`
while ( i-- ) {
if ( (elem = unmatched[i]) ) {
seed[i] = !(matches[i] = elem);
}
}
}) :
function( elem, context, xml ) {
input[0] = elem;
matcher( input, null, xml, results );
return !results.pop();
};
}),
"has": markFunction(function( selector ) {
return function( elem ) {
return Sizzle( selector, elem ).length > 0;
};
}),
"contains": markFunction(function( text ) {
return function( elem ) {
return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
};
}),
// "Whether an element is represented by a :lang() selector
// is based solely on the element's language value
// being equal to the identifier C,
// or beginning with the identifier C immediately followed by "-".
// The matching of C against the element's language value is performed case-insensitively.
// The identifier C does not have to be a valid language name."
// http://www.w3.org/TR/selectors/#lang-pseudo
"lang": markFunction( function( lang ) {
// lang value must be a valid identifier
if ( !ridentifier.test(lang || "") ) {
Sizzle.error( "unsupported lang: " + lang );
}
lang = lang.replace( runescape, funescape ).toLowerCase();
return function( elem ) {
var elemLang;
do {
if ( (elemLang = documentIsHTML ?
elem.lang :
elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
elemLang = elemLang.toLowerCase();
return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
}
} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
return false;
};
}),
// Miscellaneous
"target": function( elem ) {
var hash = window.location && window.location.hash;
return hash && hash.slice( 1 ) === elem.id;
},
"root": function( elem ) {
return elem === docElem;
},
"focus": function( elem ) {
return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
},
// Boolean properties
"enabled": function( elem ) {
return elem.disabled === false;
},
"disabled": function( elem ) {
return elem.disabled === true;
},
"checked": function( elem ) {
// In CSS3, :checked should return both checked and selected elements
// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
var nodeName = elem.nodeName.toLowerCase();
return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
},
"selected": function( elem ) {
// Accessing this property makes selected-by-default
// options in Safari work properly
if ( elem.parentNode ) {
elem.parentNode.selectedIndex;
}
return elem.selected === true;
},
// Contents
"empty": function( elem ) {
// http://www.w3.org/TR/selectors/#empty-pseudo
// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
// but not by others (comment: 8; processing instruction: 7; etc.)
// nodeType < 6 works because attributes (2) do not appear as children
for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
if ( elem.nodeType < 6 ) {
return false;
}
}
return true;
},
"parent": function( elem ) {
return !Expr.pseudos["empty"]( elem );
},
// Element/input types
"header": function( elem ) {
return rheader.test( elem.nodeName );
},
"input": function( elem ) {
return rinputs.test( elem.nodeName );
},
"button": function( elem ) {
var name = elem.nodeName.toLowerCase();
return name === "input" && elem.type === "button" || name === "button";
},
"text": function( elem ) {
var attr;
return elem.nodeName.toLowerCase() === "input" &&
elem.type === "text" &&
// Support: IE<8
// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
},
// Position-in-collection
"first": createPositionalPseudo(function() {
return [ 0 ];
}),
"last": createPositionalPseudo(function( matchIndexes, length ) {
return [ length - 1 ];
}),
"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
return [ argument < 0 ? argument + length : argument ];
}),
"even": createPositionalPseudo(function( matchIndexes, length ) {
var i = 0;
for ( ; i < length; i += 2 ) {
matchIndexes.push( i );
}
return matchIndexes;
}),
"odd": createPositionalPseudo(function( matchIndexes, length ) {
var i = 1;
for ( ; i < length; i += 2 ) {
matchIndexes.push( i );
}
return matchIndexes;
}),
"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
var i = argument < 0 ? argument + length : argument;
for ( ; --i >= 0; ) {
matchIndexes.push( i );
}
return matchIndexes;
}),
"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
var i = argument < 0 ? argument + length : argument;
for ( ; ++i < length; ) {
matchIndexes.push( i );
}
return matchIndexes;
})
}
};
Expr.pseudos["nth"] = Expr.pseudos["eq"];
// Add button/input type pseudos
for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
Expr.pseudos[ i ] = createInputPseudo( i );
}
for ( i in { submit: true, reset: true } ) {
Expr.pseudos[ i ] = createButtonPseudo( i );
}
// Easy API for creating new setFilters
function setFilters() {}
setFilters.prototype = Expr.filters = Expr.pseudos;
Expr.setFilters = new setFilters();
tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
var matched, match, tokens, type,
soFar, groups, preFilters,
cached = tokenCache[ selector + " " ];
if ( cached ) {
return parseOnly ? 0 : cached.slice( 0 );
}
soFar = selector;
groups = [];
preFilters = Expr.preFilter;
while ( soFar ) {
// Comma and first run
if ( !matched || (match = rcomma.exec( soFar )) ) {
if ( match ) {
// Don't consume trailing commas as valid
soFar = soFar.slice( match[0].length ) || soFar;
}
groups.push( (tokens = []) );
}
matched = false;
// Combinators
if ( (match = rcombinators.exec( soFar )) ) {
matched = match.shift();
tokens.push({
value: matched,
// Cast descendant combinators to space
type: match[0].replace( rtrim, " " )
});
soFar = soFar.slice( matched.length );
}
// Filters
for ( type in Expr.filter ) {
if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
(match = preFilters[ type ]( match ))) ) {
matched = match.shift();
tokens.push({
value: matched,
type: type,
matches: match
});
soFar = soFar.slice( matched.length );
}
}
if ( !matched ) {
break;
}
}
// Return the length of the invalid excess
// if we're just parsing
// Otherwise, throw an error or return tokens
return parseOnly ?
soFar.length :
soFar ?
Sizzle.error( selector ) :
// Cache the tokens
tokenCache( selector, groups ).slice( 0 );
};
function toSelector( tokens ) {
var i = 0,
len = tokens.length,
selector = "";
for ( ; i < len; i++ ) {
selector += tokens[i].value;
}
return selector;
}
function addCombinator( matcher, combinator, base ) {
var dir = combinator.dir,
checkNonElements = base && dir === "parentNode",
doneName = done++;
return combinator.first ?
// Check against closest ancestor/preceding element
function( elem, context, xml ) {
while ( (elem = elem[ dir ]) ) {
if ( elem.nodeType === 1 || checkNonElements ) {
return matcher( elem, context, xml );
}
}
} :
// Check against all ancestor/preceding elements
function( elem, context, xml ) {
var oldCache, outerCache,
newCache = [ dirruns, doneName ];
// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
if ( xml ) {
while ( (elem = elem[ dir ]) ) {
if ( elem.nodeType === 1 || checkNonElements ) {
if ( matcher( elem, context, xml ) ) {
return true;
}
}
}
} else {
while ( (elem = elem[ dir ]) ) {
if ( elem.nodeType === 1 || checkNonElements ) {
outerCache = elem[ expando ] || (elem[ expando ] = {});
if ( (oldCache = outerCache[ dir ]) &&
oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
// Assign to newCache so results back-propagate to previous elements
return (newCache[ 2 ] = oldCache[ 2 ]);
} else {
// Reuse newcache so results back-propagate to previous elements
outerCache[ dir ] = newCache;
// A match means we're done; a fail means we have to keep checking
if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
return true;
}
}
}
}
}
};
}
function elementMatcher( matchers ) {
return matchers.length > 1 ?
function( elem, context, xml ) {
var i = matchers.length;
while ( i-- ) {
if ( !matchers[i]( elem, context, xml ) ) {
return false;
}
}
return true;
} :
matchers[0];
}
function multipleContexts( selector, contexts, results ) {
var i = 0,
len = contexts.length;
for ( ; i < len; i++ ) {
Sizzle( selector, contexts[i], results );
}
return results;
}
function condense( unmatched, map, filter, context, xml ) {
var elem,
newUnmatched = [],
i = 0,
len = unmatched.length,
mapped = map != null;
for ( ; i < len; i++ ) {
if ( (elem = unmatched[i]) ) {
if ( !filter || filter( elem, context, xml ) ) {
newUnmatched.push( elem );
if ( mapped ) {
map.push( i );
}
}
}
}
return newUnmatched;
}
function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
if ( postFilter && !postFilter[ expando ] ) {
postFilter = setMatcher( postFilter );
}
if ( postFinder && !postFinder[ expando ] ) {
postFinder = setMatcher( postFinder, postSelector );
}
return markFunction(function( seed, results, context, xml ) {
var temp, i, elem,
preMap = [],
postMap = [],
preexisting = results.length,
// Get initial elements from seed or context
elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
// Prefilter to get matcher input, preserving a map for seed-results synchronization
matcherIn = preFilter && ( seed || !selector ) ?
condense( elems, preMap, preFilter, context, xml ) :
elems,
matcherOut = matcher ?
// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
// ...intermediate processing is necessary
[] :
// ...otherwise use results directly
results :
matcherIn;
// Find primary matches
if ( matcher ) {
matcher( matcherIn, matcherOut, context, xml );
}
// Apply postFilter
if ( postFilter ) {
temp = condense( matcherOut, postMap );
postFilter( temp, [], context, xml );
// Un-match failing elements by moving them back to matcherIn
i = temp.length;
while ( i-- ) {
if ( (elem = temp[i]) ) {
matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
}
}
}
if ( seed ) {
if ( postFinder || preFilter ) {
if ( postFinder ) {
// Get the final matcherOut by condensing this intermediate into postFinder contexts
temp = [];
i = matcherOut.length;
while ( i-- ) {
if ( (elem = matcherOut[i]) ) {
// Restore matcherIn since elem is not yet a final match
temp.push( (matcherIn[i] = elem) );
}
}
postFinder( null, (matcherOut = []), temp, xml );
}
// Move matched elements from seed to results to keep them synchronized
i = matcherOut.length;
while ( i-- ) {
if ( (elem = matcherOut[i]) &&
(temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {
seed[temp] = !(results[temp] = elem);
}
}
}
// Add elements to results, through postFinder if defined
} else {
matcherOut = condense(
matcherOut === results ?
matcherOut.splice( preexisting, matcherOut.length ) :
matcherOut
);
if ( postFinder ) {
postFinder( null, results, matcherOut, xml );
} else {
push.apply( results, matcherOut );
}
}
});
}
function matcherFromTokens( tokens ) {
var checkContext, matcher, j,
len = tokens.length,
leadingRelative = Expr.relative[ tokens[0].type ],
implicitRelative = leadingRelative || Expr.relative[" "],
i = leadingRelative ? 1 : 0,
// The foundational matcher ensures that elements are reachable from top-level context(s)
matchContext = addCombinator( function( elem ) {
return elem === checkContext;
}, implicitRelative, true ),
matchAnyContext = addCombinator( function( elem ) {
return indexOf.call( checkContext, elem ) > -1;
}, implicitRelative, true ),
matchers = [ function( elem, context, xml ) {
return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
(checkContext = context).nodeType ?
matchContext( elem, context, xml ) :
matchAnyContext( elem, context, xml ) );
} ];
for ( ; i < len; i++ ) {
if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
} else {
matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
// Return special upon seeing a positional matcher
if ( matcher[ expando ] ) {
// Find the next relative operator (if any) for proper handling
j = ++i;
for ( ; j < len; j++ ) {
if ( Expr.relative[ tokens[j].type ] ) {
break;
}
}
return setMatcher(
i > 1 && elementMatcher( matchers ),
i > 1 && toSelector(
// If the preceding token was a descendant combinator, insert an implicit any-element `*`
tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
).replace( rtrim, "$1" ),
matcher,
i < j && matcherFromTokens( tokens.slice( i, j ) ),
j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
j < len && toSelector( tokens )
);
}
matchers.push( matcher );
}
}
return elementMatcher( matchers );
}
function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
var bySet = setMatchers.length > 0,
byElement = elementMatchers.length > 0,
superMatcher = function( seed, context, xml, results, outermost ) {
var elem, j, matcher,
matchedCount = 0,
i = "0",
unmatched = seed && [],
setMatched = [],
contextBackup = outermostContext,
// We must always have either seed elements or outermost context
elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
// Use integer dirruns iff this is the outermost matcher
dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
len = elems.length;
if ( outermost ) {
outermostContext = context !== document && context;
}
// Add elements passing elementMatchers directly to results
// Keep `i` a string if there are no elements so `matchedCount` will be "00" below
// Support: IE<9, Safari
// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
if ( byElement && elem ) {
j = 0;
while ( (matcher = elementMatchers[j++]) ) {
if ( matcher( elem, context, xml ) ) {
results.push( elem );
break;
}
}
if ( outermost ) {
dirruns = dirrunsUnique;
}
}
// Track unmatched elements for set filters
if ( bySet ) {
// They will have gone through all possible matchers
if ( (elem = !matcher && elem) ) {
matchedCount--;
}
// Lengthen the array for every element, matched or not
if ( seed ) {
unmatched.push( elem );
}
}
}
// Apply set filters to unmatched elements
matchedCount += i;
if ( bySet && i !== matchedCount ) {
j = 0;
while ( (matcher = setMatchers[j++]) ) {
matcher( unmatched, setMatched, context, xml );
}
if ( seed ) {
// Reintegrate element matches to eliminate the need for sorting
if ( matchedCount > 0 ) {
while ( i-- ) {
if ( !(unmatched[i] || setMatched[i]) ) {
setMatched[i] = pop.call( results );
}
}
}
// Discard index placeholder values to get only actual matches
setMatched = condense( setMatched );
}
// Add matches to results
push.apply( results, setMatched );
// Seedless set matches succeeding multiple successful matchers stipulate sorting
if ( outermost && !seed && setMatched.length > 0 &&
( matchedCount + setMatchers.length ) > 1 ) {
Sizzle.uniqueSort( results );
}
}
// Override manipulation of globals by nested matchers
if ( outermost ) {
dirruns = dirrunsUnique;
outermostContext = contextBackup;
}
return unmatched;
};
return bySet ?
markFunction( superMatcher ) :
superMatcher;
}
compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
var i,
setMatchers = [],
elementMatchers = [],
cached = compilerCache[ selector + " " ];
if ( !cached ) {
// Generate a function of recursive functions that can be used to check each element
if ( !match ) {
match = tokenize( selector );
}
i = match.length;
while ( i-- ) {
cached = matcherFromTokens( match[i] );
if ( cached[ expando ] ) {
setMatchers.push( cached );
} else {
elementMatchers.push( cached );
}
}
// Cache the compiled function
cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
// Save selector and tokenization
cached.selector = selector;
}
return cached;
};
/**
* A low-level selection function that works with Sizzle's compiled
* selector functions
* @param {String|Function} selector A selector or a pre-compiled
* selector function built with Sizzle.compile
* @param {Element} context
* @param {Array} [results]
* @param {Array} [seed] A set of elements to match against
*/
select = Sizzle.select = function( selector, context, results, seed ) {
var i, tokens, token, type, find,
compiled = typeof selector === "function" && selector,
match = !seed && tokenize( (selector = compiled.selector || selector) );
results = results || [];
// Try to minimize operations if there is no seed and only one group
if ( match.length === 1 ) {
// Take a shortcut and set the context if the root selector is an ID
tokens = match[0] = match[0].slice( 0 );
if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
support.getById && context.nodeType === 9 && documentIsHTML &&
Expr.relative[ tokens[1].type ] ) {
context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
if ( !context ) {
return results;
// Precompiled matchers will still verify ancestry, so step up a level
} else if ( compiled ) {
context = context.parentNode;
}
selector = selector.slice( tokens.shift().value.length );
}
// Fetch a seed set for right-to-left matching
i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
while ( i-- ) {
token = tokens[i];
// Abort if we hit a combinator
if ( Expr.relative[ (type = token.type) ] ) {
break;
}
if ( (find = Expr.find[ type ]) ) {
// Search, expanding context for leading sibling combinators
if ( (seed = find(
token.matches[0].replace( runescape, funescape ),
rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
)) ) {
// If seed is empty or no tokens remain, we can return early
tokens.splice( i, 1 );
selector = seed.length && toSelector( tokens );
if ( !selector ) {
push.apply( results, seed );
return results;
}
break;
}
}
}
}
// Compile and execute a filtering function if one is not provided
// Provide `match` to avoid retokenization if we modified the selector above
( compiled || compile( selector, match ) )(
seed,
context,
!documentIsHTML,
results,
rsibling.test( selector ) && testContext( context.parentNode ) || context
);
return results;
};
// One-time assignments
// Sort stability
support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
// Support: Chrome<14
// Always assume duplicates if they aren't passed to the comparison function
support.detectDuplicates = !!hasDuplicate;
// Initialize against the default document
setDocument();
// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
// Detached nodes confoundingly follow *each other*
support.sortDetached = assert(function( div1 ) {
// Should return 1, but returns 4 (following)
return div1.compareDocumentPosition( document.createElement("div") ) & 1;
});
// Support: IE<8
// Prevent attribute/property "interpolation"
// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
if ( !assert(function( div ) {
div.innerHTML = "<a href='#'></a>";
return div.firstChild.getAttribute("href") === "#" ;
}) ) {
addHandle( "type|href|height|width", function( elem, name, isXML ) {
if ( !isXML ) {
return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
}
});
}
// Support: IE<9
// Use defaultValue in place of getAttribute("value")
if ( !support.attributes || !assert(function( div ) {
div.innerHTML = "<input/>";
div.firstChild.setAttribute( "value", "" );
return div.firstChild.getAttribute( "value" ) === "";
}) ) {
addHandle( "value", function( elem, name, isXML ) {
if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
return elem.defaultValue;
}
});
}
// Support: IE<9
// Use getAttributeNode to fetch booleans when getAttribute lies
if ( !assert(function( div ) {
return div.getAttribute("disabled") == null;
}) ) {
addHandle( booleans, function( elem, name, isXML ) {
var val;
if ( !isXML ) {
return elem[ name ] === true ? name.toLowerCase() :
(val = elem.getAttributeNode( name )) && val.specified ?
val.value :
null;
}
});
}
return Sizzle;
})( window );
jQuery.find = Sizzle;
jQuery.expr = Sizzle.selectors;
jQuery.expr[":"] = jQuery.expr.pseudos;
jQuery.unique = Sizzle.uniqueSort;
jQuery.text = Sizzle.getText;
jQuery.isXMLDoc = Sizzle.isXML;
jQuery.contains = Sizzle.contains;
var rneedsContext = jQuery.expr.match.needsContext;
var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
var risSimple = /^.[^:#\[\.,]*$/;
// Implement the identical functionality for filter and not
function winnow( elements, qualifier, not ) {
if ( jQuery.isFunction( qualifier ) ) {
return jQuery.grep( elements, function( elem, i ) {
/* jshint -W018 */
return !!qualifier.call( elem, i, elem ) !== not;
});
}
if ( qualifier.nodeType ) {
return jQuery.grep( elements, function( elem ) {
return ( elem === qualifier ) !== not;
});
}
if ( typeof qualifier === "string" ) {
if ( risSimple.test( qualifier ) ) {
return jQuery.filter( qualifier, elements, not );
}
qualifier = jQuery.filter( qualifier, elements );
}
return jQuery.grep( elements, function( elem ) {
return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;
});
}
jQuery.filter = function( expr, elems, not ) {
var elem = elems[ 0 ];
if ( not ) {
expr = ":not(" + expr + ")";
}
return elems.length === 1 && elem.nodeType === 1 ?
jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
return elem.nodeType === 1;
}));
};
jQuery.fn.extend({
find: function( selector ) {
var i,
ret = [],
self = this,
len = self.length;
if ( typeof selector !== "string" ) {
return this.pushStack( jQuery( selector ).filter(function() {
for ( i = 0; i < len; i++ ) {
if ( jQuery.contains( self[ i ], this ) ) {
return true;
}
}
}) );
}
for ( i = 0; i < len; i++ ) {
jQuery.find( selector, self[ i ], ret );
}
// Needed because $( selector, context ) becomes $( context ).find( selector )
ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
ret.selector = this.selector ? this.selector + " " + selector : selector;
return ret;
},
filter: function( selector ) {
return this.pushStack( winnow(this, selector || [], false) );
},
not: function( selector ) {
return this.pushStack( winnow(this, selector || [], true) );
},
is: function( selector ) {
return !!winnow(
this,
// If this is a positional/relative selector, check membership in the returned set
// so $("p:first").is("p:last") won't return true for a doc with two "p".
typeof selector === "string" && rneedsContext.test( selector ) ?
jQuery( selector ) :
selector || [],
false
).length;
}
});
// Initialize a jQuery object
// A central reference to the root jQuery(document)
var rootjQuery,
// Use the correct document accordingly with window argument (sandbox)
document = window.document,
// A simple way to check for HTML strings
// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
// Strict HTML recognition (#11290: must start with <)
rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
init = jQuery.fn.init = function( selector, context ) {
var match, elem;
// HANDLE: $(""), $(null), $(undefined), $(false)
if ( !selector ) {
return this;
}
// Handle HTML strings
if ( typeof selector === "string" ) {
if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {
// Assume that strings that start and end with <> are HTML and skip the regex check
match = [ null, selector, null ];
} else {
match = rquickExpr.exec( selector );
}
// Match html or make sure no context is specified for #id
if ( match && (match[1] || !context) ) {
// HANDLE: $(html) -> $(array)
if ( match[1] ) {
context = context instanceof jQuery ? context[0] : context;
// scripts is true for back-compat
// Intentionally let the error be thrown if parseHTML is not present
jQuery.merge( this, jQuery.parseHTML(
match[1],
context && context.nodeType ? context.ownerDocument || context : document,
true
) );
// HANDLE: $(html, props)
if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
for ( match in context ) {
// Properties of context are called as methods if possible
if ( jQuery.isFunction( this[ match ] ) ) {
this[ match ]( context[ match ] );
// ...and otherwise set as attributes
} else {
this.attr( match, context[ match ] );
}
}
}
return this;
// HANDLE: $(#id)
} else {
elem = document.getElementById( match[2] );
// Check parentNode to catch when Blackberry 4.6 returns
// nodes that are no longer in the document #6963
if ( elem && elem.parentNode ) {
// Handle the case where IE and Opera return items
// by name instead of ID
if ( elem.id !== match[2] ) {
return rootjQuery.find( selector );
}
// Otherwise, we inject the element directly into the jQuery object
this.length = 1;
this[0] = elem;
}
this.context = document;
this.selector = selector;
return this;
}
// HANDLE: $(expr, $(...))
} else if ( !context || context.jquery ) {
return ( context || rootjQuery ).find( selector );
// HANDLE: $(expr, context)
// (which is just equivalent to: $(context).find(expr)
} else {
return this.constructor( context ).find( selector );
}
// HANDLE: $(DOMElement)
} else if ( selector.nodeType ) {
this.context = this[0] = selector;
this.length = 1;
return this;
// HANDLE: $(function)
// Shortcut for document ready
} else if ( jQuery.isFunction( selector ) ) {
return typeof rootjQuery.ready !== "undefined" ?
rootjQuery.ready( selector ) :
// Execute immediately if ready is not present
selector( jQuery );
}
if ( selector.selector !== undefined ) {
this.selector = selector.selector;
this.context = selector.context;
}
return jQuery.makeArray( selector, this );
};
// Give the init function the jQuery prototype for later instantiation
init.prototype = jQuery.fn;
// Initialize central reference
rootjQuery = jQuery( document );
var rparentsprev = /^(?:parents|prev(?:Until|All))/,
// methods guaranteed to produce a unique set when starting from a unique set
guaranteedUnique = {
children: true,
contents: true,
next: true,
prev: true
};
jQuery.extend({
dir: function( elem, dir, until ) {
var matched = [],
cur = elem[ dir ];
while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {
if ( cur.nodeType === 1 ) {
matched.push( cur );
}
cur = cur[dir];
}
return matched;
},
sibling: function( n, elem ) {
var r = [];
for ( ; n; n = n.nextSibling ) {
if ( n.nodeType === 1 && n !== elem ) {
r.push( n );
}
}
return r;
}
});
jQuery.fn.extend({
has: function( target ) {
var i,
targets = jQuery( target, this ),
len = targets.length;
return this.filter(function() {
for ( i = 0; i < len; i++ ) {
if ( jQuery.contains( this, targets[i] ) ) {
return true;
}
}
});
},
closest: function( selectors, context ) {
var cur,
i = 0,
l = this.length,
matched = [],
pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
jQuery( selectors, context || this.context ) :
0;
for ( ; i < l; i++ ) {
for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {
// Always skip document fragments
if ( cur.nodeType < 11 && (pos ?
pos.index(cur) > -1 :
// Don't pass non-elements to Sizzle
cur.nodeType === 1 &&
jQuery.find.matchesSelector(cur, selectors)) ) {
matched.push( cur );
break;
}
}
}
return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );
},
// Determine the position of an element within
// the matched set of elements
index: function( elem ) {
// No argument, return index in parent
if ( !elem ) {
return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;
}
// index in selector
if ( typeof elem === "string" ) {
return jQuery.inArray( this[0], jQuery( elem ) );
}
// Locate the position of the desired element
return jQuery.inArray(
// If it receives a jQuery object, the first element is used
elem.jquery ? elem[0] : elem, this );
},
add: function( selector, context ) {
return this.pushStack(
jQuery.unique(
jQuery.merge( this.get(), jQuery( selector, context ) )
)
);
},
addBack: function( selector ) {
return this.add( selector == null ?
this.prevObject : this.prevObject.filter(selector)
);
}
});
function sibling( cur, dir ) {
do {
cur = cur[ dir ];
} while ( cur && cur.nodeType !== 1 );
return cur;
}
jQuery.each({
parent: function( elem ) {
var parent = elem.parentNode;
return parent && parent.nodeType !== 11 ? parent : null;
},
parents: function( elem ) {
return jQuery.dir( elem, "parentNode" );
},
parentsUntil: function( elem, i, until ) {
return jQuery.dir( elem, "parentNode", until );
},
next: function( elem ) {
return sibling( elem, "nextSibling" );
},
prev: function( elem ) {
return sibling( elem, "previousSibling" );
},
nextAll: function( elem ) {
return jQuery.dir( elem, "nextSibling" );
},
prevAll: function( elem ) {
return jQuery.dir( elem, "previousSibling" );
},
nextUntil: function( elem, i, until ) {
return jQuery.dir( elem, "nextSibling", until );
},
prevUntil: function( elem, i, until ) {
return jQuery.dir( elem, "previousSibling", until );
},
siblings: function( elem ) {
return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
},
children: function( elem ) {
return jQuery.sibling( elem.firstChild );
},
contents: function( elem ) {
return jQuery.nodeName( elem, "iframe" ) ?
elem.contentDocument || elem.contentWindow.document :
jQuery.merge( [], elem.childNodes );
}
}, function( name, fn ) {
jQuery.fn[ name ] = function( until, selector ) {
var ret = jQuery.map( this, fn, until );
if ( name.slice( -5 ) !== "Until" ) {
selector = until;
}
if ( selector && typeof selector === "string" ) {
ret = jQuery.filter( selector, ret );
}
if ( this.length > 1 ) {
// Remove duplicates
if ( !guaranteedUnique[ name ] ) {
ret = jQuery.unique( ret );
}
// Reverse order for parents* and prev-derivatives
if ( rparentsprev.test( name ) ) {
ret = ret.reverse();
}
}
return this.pushStack( ret );
};
});
var rnotwhite = (/\S+/g);
// String to Object options format cache
var optionsCache = {};
// Convert String-formatted options into Object-formatted ones and store in cache
function createOptions( options ) {
var object = optionsCache[ options ] = {};
jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
object[ flag ] = true;
});
return object;
}
/*
* Create a callback list using the following parameters:
*
* options: an optional list of space-separated options that will change how
* the callback list behaves or a more traditional option object
*
* By default a callback list will act like an event callback list and can be
* "fired" multiple times.
*
* Possible options:
*
* once: will ensure the callback list can only be fired once (like a Deferred)
*
* memory: will keep track of previous values and will call any callback added
* after the list has been fired right away with the latest "memorized"
* values (like a Deferred)
*
* unique: will ensure a callback can only be added once (no duplicate in the list)
*
* stopOnFalse: interrupt callings when a callback returns false
*
*/
jQuery.Callbacks = function( options ) {
// Convert options from String-formatted to Object-formatted if needed
// (we check in cache first)
options = typeof options === "string" ?
( optionsCache[ options ] || createOptions( options ) ) :
jQuery.extend( {}, options );
var // Flag to know if list is currently firing
firing,
// Last fire value (for non-forgettable lists)
memory,
// Flag to know if list was already fired
fired,
// End of the loop when firing
firingLength,
// Index of currently firing callback (modified by remove if needed)
firingIndex,
// First callback to fire (used internally by add and fireWith)
firingStart,
// Actual callback list
list = [],
// Stack of fire calls for repeatable lists
stack = !options.once && [],
// Fire callbacks
fire = function( data ) {
memory = options.memory && data;
fired = true;
firingIndex = firingStart || 0;
firingStart = 0;
firingLength = list.length;
firing = true;
for ( ; list && firingIndex < firingLength; firingIndex++ ) {
if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
memory = false; // To prevent further calls using add
break;
}
}
firing = false;
if ( list ) {
if ( stack ) {
if ( stack.length ) {
fire( stack.shift() );
}
} else if ( memory ) {
list = [];
} else {
self.disable();
}
}
},
// Actual Callbacks object
self = {
// Add a callback or a collection of callbacks to the list
add: function() {
if ( list ) {
// First, we save the current length
var start = list.length;
(function add( args ) {
jQuery.each( args, function( _, arg ) {
var type = jQuery.type( arg );
if ( type === "function" ) {
if ( !options.unique || !self.has( arg ) ) {
list.push( arg );
}
} else if ( arg && arg.length && type !== "string" ) {
// Inspect recursively
add( arg );
}
});
})( arguments );
// Do we need to add the callbacks to the
// current firing batch?
if ( firing ) {
firingLength = list.length;
// With memory, if we're not firing then
// we should call right away
} else if ( memory ) {
firingStart = start;
fire( memory );
}
}
return this;
},
// Remove a callback from the list
remove: function() {
if ( list ) {
jQuery.each( arguments, function( _, arg ) {
var index;
while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
list.splice( index, 1 );
// Handle firing indexes
if ( firing ) {
if ( index <= firingLength ) {
firingLength--;
}
if ( index <= firingIndex ) {
firingIndex--;
}
}
}
});
}
return this;
},
// Check if a given callback is in the list.
// If no argument is given, return whether or not list has callbacks attached.
has: function( fn ) {
return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
},
// Remove all callbacks from the list
empty: function() {
list = [];
firingLength = 0;
return this;
},
// Have the list do nothing anymore
disable: function() {
list = stack = memory = undefined;
return this;
},
// Is it disabled?
disabled: function() {
return !list;
},
// Lock the list in its current state
lock: function() {
stack = undefined;
if ( !memory ) {
self.disable();
}
return this;
},
// Is it locked?
locked: function() {
return !stack;
},
// Call all callbacks with the given context and arguments
fireWith: function( context, args ) {
if ( list && ( !fired || stack ) ) {
args = args || [];
args = [ context, args.slice ? args.slice() : args ];
if ( firing ) {
stack.push( args );
} else {
fire( args );
}
}
return this;
},
// Call all the callbacks with the given arguments
fire: function() {
self.fireWith( this, arguments );
return this;
},
// To know if the callbacks have already been called at least once
fired: function() {
return !!fired;
}
};
return self;
};
jQuery.extend({
Deferred: function( func ) {
var tuples = [
// action, add listener, listener list, final state
[ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
[ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
[ "notify", "progress", jQuery.Callbacks("memory") ]
],
state = "pending",
promise = {
state: function() {
return state;
},
always: function() {
deferred.done( arguments ).fail( arguments );
return this;
},
then: function( /* fnDone, fnFail, fnProgress */ ) {
var fns = arguments;
return jQuery.Deferred(function( newDefer ) {
jQuery.each( tuples, function( i, tuple ) {
var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
// deferred[ done | fail | progress ] for forwarding actions to newDefer
deferred[ tuple[1] ](function() {
var returned = fn && fn.apply( this, arguments );
if ( returned && jQuery.isFunction( returned.promise ) ) {
returned.promise()
.done( newDefer.resolve )
.fail( newDefer.reject )
.progress( newDefer.notify );
} else {
newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
}
});
});
fns = null;
}).promise();
},
// Get a promise for this deferred
// If obj is provided, the promise aspect is added to the object
promise: function( obj ) {
return obj != null ? jQuery.extend( obj, promise ) : promise;
}
},
deferred = {};
// Keep pipe for back-compat
promise.pipe = promise.then;
// Add list-specific methods
jQuery.each( tuples, function( i, tuple ) {
var list = tuple[ 2 ],
stateString = tuple[ 3 ];
// promise[ done | fail | progress ] = list.add
promise[ tuple[1] ] = list.add;
// Handle state
if ( stateString ) {
list.add(function() {
// state = [ resolved | rejected ]
state = stateString;
// [ reject_list | resolve_list ].disable; progress_list.lock
}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
}
// deferred[ resolve | reject | notify ]
deferred[ tuple[0] ] = function() {
deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
return this;
};
deferred[ tuple[0] + "With" ] = list.fireWith;
});
// Make the deferred a promise
promise.promise( deferred );
// Call given func if any
if ( func ) {
func.call( deferred, deferred );
}
// All done!
return deferred;
},
// Deferred helper
when: function( subordinate /* , ..., subordinateN */ ) {
var i = 0,
resolveValues = slice.call( arguments ),
length = resolveValues.length,
// the count of uncompleted subordinates
remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
// the master Deferred. If resolveValues consist of only a single Deferred, just use that.
deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
// Update function for both resolve and progress values
updateFunc = function( i, contexts, values ) {
return function( value ) {
contexts[ i ] = this;
values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
if ( values === progressValues ) {
deferred.notifyWith( contexts, values );
} else if ( !(--remaining) ) {
deferred.resolveWith( contexts, values );
}
};
},
progressValues, progressContexts, resolveContexts;
// add listeners to Deferred subordinates; treat others as resolved
if ( length > 1 ) {
progressValues = new Array( length );
progressContexts = new Array( length );
resolveContexts = new Array( length );
for ( ; i < length; i++ ) {
if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
resolveValues[ i ].promise()
.done( updateFunc( i, resolveContexts, resolveValues ) )
.fail( deferred.reject )
.progress( updateFunc( i, progressContexts, progressValues ) );
} else {
--remaining;
}
}
}
// if we're not waiting on anything, resolve the master
if ( !remaining ) {
deferred.resolveWith( resolveContexts, resolveValues );
}
return deferred.promise();
}
});
// The deferred used on DOM ready
var readyList;
jQuery.fn.ready = function( fn ) {
// Add the callback
jQuery.ready.promise().done( fn );
return this;
};
jQuery.extend({
// Is the DOM ready to be used? Set to true once it occurs.
isReady: false,
// A counter to track how many items to wait for before
// the ready event fires. See #6781
readyWait: 1,
// Hold (or release) the ready event
holdReady: function( hold ) {
if ( hold ) {
jQuery.readyWait++;
} else {
jQuery.ready( true );
}
},
// Handle when the DOM is ready
ready: function( wait ) {
// Abort if there are pending holds or we're already ready
if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
return;
}
// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
if ( !document.body ) {
return setTimeout( jQuery.ready );
}
// Remember that the DOM is ready
jQuery.isReady = true;
// If a normal DOM Ready event fired, decrement, and wait if need be
if ( wait !== true && --jQuery.readyWait > 0 ) {
return;
}
// If there are functions bound, to execute
readyList.resolveWith( document, [ jQuery ] );
// Trigger any bound ready events
if ( jQuery.fn.triggerHandler ) {
jQuery( document ).triggerHandler( "ready" );
jQuery( document ).off( "ready" );
}
}
});
/**
* Clean-up method for dom ready events
*/
function detach() {
if ( document.addEventListener ) {
document.removeEventListener( "DOMContentLoaded", completed, false );
window.removeEventListener( "load", completed, false );
} else {
document.detachEvent( "onreadystatechange", completed );
window.detachEvent( "onload", completed );
}
}
/**
* The ready event handler and self cleanup method
*/
function completed() {
// readyState === "complete" is good enough for us to call the dom ready in oldIE
if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) {
detach();
jQuery.ready();
}
}
jQuery.ready.promise = function( obj ) {
if ( !readyList ) {
readyList = jQuery.Deferred();
// Catch cases where $(document).ready() is called after the browser event has already occurred.
// we once tried to use readyState "interactive" here, but it caused issues like the one
// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
if ( document.readyState === "complete" ) {
// Handle it asynchronously to allow scripts the opportunity to delay ready
setTimeout( jQuery.ready );
// Standards-based browsers support DOMContentLoaded
} else if ( document.addEventListener ) {
// Use the handy event callback
document.addEventListener( "DOMContentLoaded", completed, false );
// A fallback to window.onload, that will always work
window.addEventListener( "load", completed, false );
// If IE event model is used
} else {
// Ensure firing before onload, maybe late but safe also for iframes
document.attachEvent( "onreadystatechange", completed );
// A fallback to window.onload, that will always work
window.attachEvent( "onload", completed );
// If IE and not a frame
// continually check to see if the document is ready
var top = false;
try {
top = window.frameElement == null && document.documentElement;
} catch(e) {}
if ( top && top.doScroll ) {
(function doScrollCheck() {
if ( !jQuery.isReady ) {
try {
// Use the trick by Diego Perini
// http://javascript.nwbox.com/IEContentLoaded/
top.doScroll("left");
} catch(e) {
return setTimeout( doScrollCheck, 50 );
}
// detach all dom ready events
detach();
// and execute any waiting functions
jQuery.ready();
}
})();
}
}
}
return readyList.promise( obj );
};
var strundefined = typeof undefined;
// Support: IE<9
// Iteration over object's inherited properties before its own
var i;
for ( i in jQuery( support ) ) {
break;
}
support.ownLast = i !== "0";
// Note: most support tests are defined in their respective modules.
// false until the test is run
support.inlineBlockNeedsLayout = false;
// Execute ASAP in case we need to set body.style.zoom
jQuery(function() {
// Minified: var a,b,c,d
var val, div, body, container;
body = document.getElementsByTagName( "body" )[ 0 ];
if ( !body || !body.style ) {
// Return for frameset docs that don't have a body
return;
}
// Setup
div = document.createElement( "div" );
container = document.createElement( "div" );
container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px";
body.appendChild( container ).appendChild( div );
if ( typeof div.style.zoom !== strundefined ) {
// Support: IE<8
// Check if natively block-level elements act like inline-block
// elements when setting their display to 'inline' and giving
// them layout
div.style.cssText = "display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1";
support.inlineBlockNeedsLayout = val = div.offsetWidth === 3;
if ( val ) {
// Prevent IE 6 from affecting layout for positioned elements #11048
// Prevent IE from shrinking the body in IE 7 mode #12869
// Support: IE<8
body.style.zoom = 1;
}
}
body.removeChild( container );
});
(function() {
var div = document.createElement( "div" );
// Execute the test only if not already executed in another module.
if (support.deleteExpando == null) {
// Support: IE<9
support.deleteExpando = true;
try {
delete div.test;
} catch( e ) {
support.deleteExpando = false;
}
}
// Null elements to avoid leaks in IE.
div = null;
})();
/**
* Determines whether an object can have data
*/
jQuery.acceptData = function( elem ) {
var noData = jQuery.noData[ (elem.nodeName + " ").toLowerCase() ],
nodeType = +elem.nodeType || 1;
// Do not set data on non-element DOM nodes because it will not be cleared (#8335).
return nodeType !== 1 && nodeType !== 9 ?
false :
// Nodes accept data unless otherwise specified; rejection can be conditional
!noData || noData !== true && elem.getAttribute("classid") === noData;
};
var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
rmultiDash = /([A-Z])/g;
function dataAttr( elem, key, data ) {
// If nothing was found internally, try to fetch any
// data from the HTML5 data-* attribute
if ( data === undefined && elem.nodeType === 1 ) {
var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
data = elem.getAttribute( name );
if ( typeof data === "string" ) {
try {
data = data === "true" ? true :
data === "false" ? false :
data === "null" ? null :
// Only convert to a number if it doesn't change the string
+data + "" === data ? +data :
rbrace.test( data ) ? jQuery.parseJSON( data ) :
data;
} catch( e ) {}
// Make sure we set the data so it isn't changed later
jQuery.data( elem, key, data );
} else {
data = undefined;
}
}
return data;
}
// checks a cache object for emptiness
function isEmptyDataObject( obj ) {
var name;
for ( name in obj ) {
// if the public data object is empty, the private is still empty
if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) {
continue;
}
if ( name !== "toJSON" ) {
return false;
}
}
return true;
}
function internalData( elem, name, data, pvt /* Internal Use Only */ ) {
if ( !jQuery.acceptData( elem ) ) {
return;
}
var ret, thisCache,
internalKey = jQuery.expando,
// We have to handle DOM nodes and JS objects differently because IE6-7
// can't GC object references properly across the DOM-JS boundary
isNode = elem.nodeType,
// Only DOM nodes need the global jQuery cache; JS object data is
// attached directly to the object so GC can occur automatically
cache = isNode ? jQuery.cache : elem,
// Only defining an ID for JS objects if its cache already exists allows
// the code to shortcut on the same path as a DOM node with no cache
id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;
// Avoid doing any more work than we need to when trying to get data on an
// object that has no data at all
if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) {
return;
}
if ( !id ) {
// Only DOM nodes need a new unique ID for each element since their data
// ends up in the global cache
if ( isNode ) {
id = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;
} else {
id = internalKey;
}
}
if ( !cache[ id ] ) {
// Avoid exposing jQuery metadata on plain JS objects when the object
// is serialized using JSON.stringify
cache[ id ] = isNode ? {} : { toJSON: jQuery.noop };
}
// An object can be passed to jQuery.data instead of a key/value pair; this gets
// shallow copied over onto the existing cache
if ( typeof name === "object" || typeof name === "function" ) {
if ( pvt ) {
cache[ id ] = jQuery.extend( cache[ id ], name );
} else {
cache[ id ].data = jQuery.extend( cache[ id ].data, name );
}
}
thisCache = cache[ id ];
// jQuery data() is stored in a separate object inside the object's internal data
// cache in order to avoid key collisions between internal data and user-defined
// data.
if ( !pvt ) {
if ( !thisCache.data ) {
thisCache.data = {};
}
thisCache = thisCache.data;
}
if ( data !== undefined ) {
thisCache[ jQuery.camelCase( name ) ] = data;
}
// Check for both converted-to-camel and non-converted data property names
// If a data property was specified
if ( typeof name === "string" ) {
// First Try to find as-is property data
ret = thisCache[ name ];
// Test for null|undefined property data
if ( ret == null ) {
// Try to find the camelCased property
ret = thisCache[ jQuery.camelCase( name ) ];
}
} else {
ret = thisCache;
}
return ret;
}
function internalRemoveData( elem, name, pvt ) {
if ( !jQuery.acceptData( elem ) ) {
return;
}
var thisCache, i,
isNode = elem.nodeType,
// See jQuery.data for more information
cache = isNode ? jQuery.cache : elem,
id = isNode ? elem[ jQuery.expando ] : jQuery.expando;
// If there is already no cache entry for this object, there is no
// purpose in continuing
if ( !cache[ id ] ) {
return;
}
if ( name ) {
thisCache = pvt ? cache[ id ] : cache[ id ].data;
if ( thisCache ) {
// Support array or space separated string names for data keys
if ( !jQuery.isArray( name ) ) {
// try the string as a key before any manipulation
if ( name in thisCache ) {
name = [ name ];
} else {
// split the camel cased version by spaces unless a key with the spaces exists
name = jQuery.camelCase( name );
if ( name in thisCache ) {
name = [ name ];
} else {
name = name.split(" ");
}
}
} else {
// If "name" is an array of keys...
// When data is initially created, via ("key", "val") signature,
// keys will be converted to camelCase.
// Since there is no way to tell _how_ a key was added, remove
// both plain key and camelCase key. #12786
// This will only penalize the array argument path.
name = name.concat( jQuery.map( name, jQuery.camelCase ) );
}
i = name.length;
while ( i-- ) {
delete thisCache[ name[i] ];
}
// If there is no data left in the cache, we want to continue
// and let the cache object itself get destroyed
if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {
return;
}
}
}
// See jQuery.data for more information
if ( !pvt ) {
delete cache[ id ].data;
// Don't destroy the parent cache unless the internal data object
// had been the only thing left in it
if ( !isEmptyDataObject( cache[ id ] ) ) {
return;
}
}
// Destroy the cache
if ( isNode ) {
jQuery.cleanData( [ elem ], true );
// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)
/* jshint eqeqeq: false */
} else if ( support.deleteExpando || cache != cache.window ) {
/* jshint eqeqeq: true */
delete cache[ id ];
// When all else fails, null
} else {
cache[ id ] = null;
}
}
jQuery.extend({
cache: {},
// The following elements (space-suffixed to avoid Object.prototype collisions)
// throw uncatchable exceptions if you attempt to set expando properties
noData: {
"applet ": true,
"embed ": true,
// ...but Flash objects (which have this classid) *can* handle expandos
"object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
},
hasData: function( elem ) {
elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];
return !!elem && !isEmptyDataObject( elem );
},
data: function( elem, name, data ) {
return internalData( elem, name, data );
},
removeData: function( elem, name ) {
return internalRemoveData( elem, name );
},
// For internal use only.
_data: function( elem, name, data ) {
return internalData( elem, name, data, true );
},
_removeData: function( elem, name ) {
return internalRemoveData( elem, name, true );
}
});
jQuery.fn.extend({
data: function( key, value ) {
var i, name, data,
elem = this[0],
attrs = elem && elem.attributes;
// Special expections of .data basically thwart jQuery.access,
// so implement the relevant behavior ourselves
// Gets all values
if ( key === undefined ) {
if ( this.length ) {
data = jQuery.data( elem );
if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) {
i = attrs.length;
while ( i-- ) {
// Support: IE11+
// The attrs elements can be null (#14894)
if ( attrs[ i ] ) {
name = attrs[ i ].name;
if ( name.indexOf( "data-" ) === 0 ) {
name = jQuery.camelCase( name.slice(5) );
dataAttr( elem, name, data[ name ] );
}
}
}
jQuery._data( elem, "parsedAttrs", true );
}
}
return data;
}
// Sets multiple values
if ( typeof key === "object" ) {
return this.each(function() {
jQuery.data( this, key );
});
}
return arguments.length > 1 ?
// Sets one value
this.each(function() {
jQuery.data( this, key, value );
}) :
// Gets one value
// Try to fetch any internally stored data first
elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;
},
removeData: function( key ) {
return this.each(function() {
jQuery.removeData( this, key );
});
}
});
jQuery.extend({
queue: function( elem, type, data ) {
var queue;
if ( elem ) {
type = ( type || "fx" ) + "queue";
queue = jQuery._data( elem, type );
// Speed up dequeue by getting out quickly if this is just a lookup
if ( data ) {
if ( !queue || jQuery.isArray(data) ) {
queue = jQuery._data( elem, type, jQuery.makeArray(data) );
} else {
queue.push( data );
}
}
return queue || [];
}
},
dequeue: function( elem, type ) {
type = type || "fx";
var queue = jQuery.queue( elem, type ),
startLength = queue.length,
fn = queue.shift(),
hooks = jQuery._queueHooks( elem, type ),
next = function() {
jQuery.dequeue( elem, type );
};
// If the fx queue is dequeued, always remove the progress sentinel
if ( fn === "inprogress" ) {
fn = queue.shift();
startLength--;
}
if ( fn ) {
// Add a progress sentinel to prevent the fx queue from being
// automatically dequeued
if ( type === "fx" ) {
queue.unshift( "inprogress" );
}
// clear up the last queue stop function
delete hooks.stop;
fn.call( elem, next, hooks );
}
if ( !startLength && hooks ) {
hooks.empty.fire();
}
},
// not intended for public consumption - generates a queueHooks object, or returns the current one
_queueHooks: function( elem, type ) {
var key = type + "queueHooks";
return jQuery._data( elem, key ) || jQuery._data( elem, key, {
empty: jQuery.Callbacks("once memory").add(function() {
jQuery._removeData( elem, type + "queue" );
jQuery._removeData( elem, key );
})
});
}
});
jQuery.fn.extend({
queue: function( type, data ) {
var setter = 2;
if ( typeof type !== "string" ) {
data = type;
type = "fx";
setter--;
}
if ( arguments.length < setter ) {
return jQuery.queue( this[0], type );
}
return data === undefined ?
this :
this.each(function() {
var queue = jQuery.queue( this, type, data );
// ensure a hooks for this queue
jQuery._queueHooks( this, type );
if ( type === "fx" && queue[0] !== "inprogress" ) {
jQuery.dequeue( this, type );
}
});
},
dequeue: function( type ) {
return this.each(function() {
jQuery.dequeue( this, type );
});
},
clearQueue: function( type ) {
return this.queue( type || "fx", [] );
},
// Get a promise resolved when queues of a certain type
// are emptied (fx is the type by default)
promise: function( type, obj ) {
var tmp,
count = 1,
defer = jQuery.Deferred(),
elements = this,
i = this.length,
resolve = function() {
if ( !( --count ) ) {
defer.resolveWith( elements, [ elements ] );
}
};
if ( typeof type !== "string" ) {
obj = type;
type = undefined;
}
type = type || "fx";
while ( i-- ) {
tmp = jQuery._data( elements[ i ], type + "queueHooks" );
if ( tmp && tmp.empty ) {
count++;
tmp.empty.add( resolve );
}
}
resolve();
return defer.promise( obj );
}
});
var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
var isHidden = function( elem, el ) {
// isHidden might be called from jQuery#filter function;
// in that case, element will be second argument
elem = el || elem;
return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
};
// Multifunctional method to get and set values of a collection
// The value/s can optionally be executed if it's a function
var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
var i = 0,
length = elems.length,
bulk = key == null;
// Sets many values
if ( jQuery.type( key ) === "object" ) {
chainable = true;
for ( i in key ) {
jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
}
// Sets one value
} else if ( value !== undefined ) {
chainable = true;
if ( !jQuery.isFunction( value ) ) {
raw = true;
}
if ( bulk ) {
// Bulk operations run against the entire set
if ( raw ) {
fn.call( elems, value );
fn = null;
// ...except when executing function values
} else {
bulk = fn;
fn = function( elem, key, value ) {
return bulk.call( jQuery( elem ), value );
};
}
}
if ( fn ) {
for ( ; i < length; i++ ) {
fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
}
}
}
return chainable ?
elems :
// Gets
bulk ?
fn.call( elems ) :
length ? fn( elems[0], key ) : emptyGet;
};
var rcheckableType = (/^(?:checkbox|radio)$/i);
(function() {
// Minified: var a,b,c
var input = document.createElement( "input" ),
div = document.createElement( "div" ),
fragment = document.createDocumentFragment();
// Setup
div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
// IE strips leading whitespace when .innerHTML is used
support.leadingWhitespace = div.firstChild.nodeType === 3;
// Make sure that tbody elements aren't automatically inserted
// IE will insert them into empty tables
support.tbody = !div.getElementsByTagName( "tbody" ).length;
// Make sure that link elements get serialized correctly by innerHTML
// This requires a wrapper element in IE
support.htmlSerialize = !!div.getElementsByTagName( "link" ).length;
// Makes sure cloning an html5 element does not cause problems
// Where outerHTML is undefined, this still works
support.html5Clone =
document.createElement( "nav" ).cloneNode( true ).outerHTML !== "<:nav></:nav>";
// Check if a disconnected checkbox will retain its checked
// value of true after appended to the DOM (IE6/7)
input.type = "checkbox";
input.checked = true;
fragment.appendChild( input );
support.appendChecked = input.checked;
// Make sure textarea (and checkbox) defaultValue is properly cloned
// Support: IE6-IE11+
div.innerHTML = "<textarea>x</textarea>";
support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
// #11217 - WebKit loses check when the name is after the checked attribute
fragment.appendChild( div );
div.innerHTML = "<input type='radio' checked='checked' name='t'/>";
// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3
// old WebKit doesn't clone checked state correctly in fragments
support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
// Support: IE<9
// Opera does not clone events (and typeof div.attachEvent === undefined).
// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()
support.noCloneEvent = true;
if ( div.attachEvent ) {
div.attachEvent( "onclick", function() {
support.noCloneEvent = false;
});
div.cloneNode( true ).click();
}
// Execute the test only if not already executed in another module.
if (support.deleteExpando == null) {
// Support: IE<9
support.deleteExpando = true;
try {
delete div.test;
} catch( e ) {
support.deleteExpando = false;
}
}
})();
(function() {
var i, eventName,
div = document.createElement( "div" );
// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)
for ( i in { submit: true, change: true, focusin: true }) {
eventName = "on" + i;
if ( !(support[ i + "Bubbles" ] = eventName in window) ) {
// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)
div.setAttribute( eventName, "t" );
support[ i + "Bubbles" ] = div.attributes[ eventName ].expando === false;
}
}
// Null elements to avoid leaks in IE.
div = null;
})();
var rformElems = /^(?:input|select|textarea)$/i,
rkeyEvent = /^key/,
rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,
rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
function returnTrue() {
return true;
}
function returnFalse() {
return false;
}
function safeActiveElement() {
try {
return document.activeElement;
} catch ( err ) { }
}
/*
* Helper functions for managing events -- not part of the public interface.
* Props to Dean Edwards' addEvent library for many of the ideas.
*/
jQuery.event = {
global: {},
add: function( elem, types, handler, data, selector ) {
var tmp, events, t, handleObjIn,
special, eventHandle, handleObj,
handlers, type, namespaces, origType,
elemData = jQuery._data( elem );
// Don't attach events to noData or text/comment nodes (but allow plain objects)
if ( !elemData ) {
return;
}
// Caller can pass in an object of custom data in lieu of the handler
if ( handler.handler ) {
handleObjIn = handler;
handler = handleObjIn.handler;
selector = handleObjIn.selector;
}
// Make sure that the handler has a unique ID, used to find/remove it later
if ( !handler.guid ) {
handler.guid = jQuery.guid++;
}
// Init the element's event structure and main handler, if this is the first
if ( !(events = elemData.events) ) {
events = elemData.events = {};
}
if ( !(eventHandle = elemData.handle) ) {
eventHandle = elemData.handle = function( e ) {
// Discard the second event of a jQuery.event.trigger() and
// when an event is called after a page has unloaded
return typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?
jQuery.event.dispatch.apply( eventHandle.elem, arguments ) :
undefined;
};
// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events
eventHandle.elem = elem;
}
// Handle multiple events separated by a space
types = ( types || "" ).match( rnotwhite ) || [ "" ];
t = types.length;
while ( t-- ) {
tmp = rtypenamespace.exec( types[t] ) || [];
type = origType = tmp[1];
namespaces = ( tmp[2] || "" ).split( "." ).sort();
// There *must* be a type, no attaching namespace-only handlers
if ( !type ) {
continue;
}
// If event changes its type, use the special event handlers for the changed type
special = jQuery.event.special[ type ] || {};
// If selector defined, determine special event api type, otherwise given type
type = ( selector ? special.delegateType : special.bindType ) || type;
// Update special based on newly reset type
special = jQuery.event.special[ type ] || {};
// handleObj is passed to all event handlers
handleObj = jQuery.extend({
type: type,
origType: origType,
data: data,
handler: handler,
guid: handler.guid,
selector: selector,
needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
namespace: namespaces.join(".")
}, handleObjIn );
// Init the event handler queue if we're the first
if ( !(handlers = events[ type ]) ) {
handlers = events[ type ] = [];
handlers.delegateCount = 0;
// Only use addEventListener/attachEvent if the special events handler returns false
if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
// Bind the global event handler to the element
if ( elem.addEventListener ) {
elem.addEventListener( type, eventHandle, false );
} else if ( elem.attachEvent ) {
elem.attachEvent( "on" + type, eventHandle );
}
}
}
if ( special.add ) {
special.add.call( elem, handleObj );
if ( !handleObj.handler.guid ) {
handleObj.handler.guid = handler.guid;
}
}
// Add to the element's handler list, delegates in front
if ( selector ) {
handlers.splice( handlers.delegateCount++, 0, handleObj );
} else {
handlers.push( handleObj );
}
// Keep track of which events have ever been used, for event optimization
jQuery.event.global[ type ] = true;
}
// Nullify elem to prevent memory leaks in IE
elem = null;
},
// Detach an event or set of events from an element
remove: function( elem, types, handler, selector, mappedTypes ) {
var j, handleObj, tmp,
origCount, t, events,
special, handlers, type,
namespaces, origType,
elemData = jQuery.hasData( elem ) && jQuery._data( elem );
if ( !elemData || !(events = elemData.events) ) {
return;
}
// Once for each type.namespace in types; type may be omitted
types = ( types || "" ).match( rnotwhite ) || [ "" ];
t = types.length;
while ( t-- ) {
tmp = rtypenamespace.exec( types[t] ) || [];
type = origType = tmp[1];
namespaces = ( tmp[2] || "" ).split( "." ).sort();
// Unbind all events (on this namespace, if provided) for the element
if ( !type ) {
for ( type in events ) {
jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
}
continue;
}
special = jQuery.event.special[ type ] || {};
type = ( selector ? special.delegateType : special.bindType ) || type;
handlers = events[ type ] || [];
tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" );
// Remove matching events
origCount = j = handlers.length;
while ( j-- ) {
handleObj = handlers[ j ];
if ( ( mappedTypes || origType === handleObj.origType ) &&
( !handler || handler.guid === handleObj.guid ) &&
( !tmp || tmp.test( handleObj.namespace ) ) &&
( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
handlers.splice( j, 1 );
if ( handleObj.selector ) {
handlers.delegateCount--;
}
if ( special.remove ) {
special.remove.call( elem, handleObj );
}
}
}
// Remove generic event handler if we removed something and no more handlers exist
// (avoids potential for endless recursion during removal of special event handlers)
if ( origCount && !handlers.length ) {
if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
jQuery.removeEvent( elem, type, elemData.handle );
}
delete events[ type ];
}
}
// Remove the expando if it's no longer used
if ( jQuery.isEmptyObject( events ) ) {
delete elemData.handle;
// removeData also checks for emptiness and clears the expando if empty
// so use it instead of delete
jQuery._removeData( elem, "events" );
}
},
trigger: function( event, data, elem, onlyHandlers ) {
var handle, ontype, cur,
bubbleType, special, tmp, i,
eventPath = [ elem || document ],
type = hasOwn.call( event, "type" ) ? event.type : event,
namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : [];
cur = tmp = elem = elem || document;
// Don't do events on text and comment nodes
if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
return;
}
// focus/blur morphs to focusin/out; ensure we're not firing them right now
if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
return;
}
if ( type.indexOf(".") >= 0 ) {
// Namespaced trigger; create a regexp to match event type in handle()
namespaces = type.split(".");
type = namespaces.shift();
namespaces.sort();
}
ontype = type.indexOf(":") < 0 && "on" + type;
// Caller can pass in a jQuery.Event object, Object, or just an event type string
event = event[ jQuery.expando ] ?
event :
new jQuery.Event( type, typeof event === "object" && event );
// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
event.isTrigger = onlyHandlers ? 2 : 3;
event.namespace = namespaces.join(".");
event.namespace_re = event.namespace ?
new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
null;
// Clean up the event in case it is being reused
event.result = undefined;
if ( !event.target ) {
event.target = elem;
}
// Clone any incoming data and prepend the event, creating the handler arg list
data = data == null ?
[ event ] :
jQuery.makeArray( data, [ event ] );
// Allow special events to draw outside the lines
special = jQuery.event.special[ type ] || {};
if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
return;
}
// Determine event propagation path in advance, per W3C events spec (#9951)
// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
bubbleType = special.delegateType || type;
if ( !rfocusMorph.test( bubbleType + type ) ) {
cur = cur.parentNode;
}
for ( ; cur; cur = cur.parentNode ) {
eventPath.push( cur );
tmp = cur;
}
// Only add window if we got to document (e.g., not plain obj or detached DOM)
if ( tmp === (elem.ownerDocument || document) ) {
eventPath.push( tmp.defaultView || tmp.parentWindow || window );
}
}
// Fire handlers on the event path
i = 0;
while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {
event.type = i > 1 ?
bubbleType :
special.bindType || type;
// jQuery handler
handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" );
if ( handle ) {
handle.apply( cur, data );
}
// Native handler
handle = ontype && cur[ ontype ];
if ( handle && handle.apply && jQuery.acceptData( cur ) ) {
event.result = handle.apply( cur, data );
if ( event.result === false ) {
event.preventDefault();
}
}
}
event.type = type;
// If nobody prevented the default action, do it now
if ( !onlyHandlers && !event.isDefaultPrevented() ) {
if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&
jQuery.acceptData( elem ) ) {
// Call a native DOM method on the target with the same name name as the event.
// Can't use an .isFunction() check here because IE6/7 fails that test.
// Don't do default actions on window, that's where global variables be (#6170)
if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {
// Don't re-trigger an onFOO event when we call its FOO() method
tmp = elem[ ontype ];
if ( tmp ) {
elem[ ontype ] = null;
}
// Prevent re-triggering of the same event, since we already bubbled it above
jQuery.event.triggered = type;
try {
elem[ type ]();
} catch ( e ) {
// IE<9 dies on focus/blur to hidden element (#1486,#12518)
// only reproducible on winXP IE8 native, not IE9 in IE8 mode
}
jQuery.event.triggered = undefined;
if ( tmp ) {
elem[ ontype ] = tmp;
}
}
}
}
return event.result;
},
dispatch: function( event ) {
// Make a writable jQuery.Event from the native event object
event = jQuery.event.fix( event );
var i, ret, handleObj, matched, j,
handlerQueue = [],
args = slice.call( arguments ),
handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [],
special = jQuery.event.special[ event.type ] || {};
// Use the fix-ed jQuery.Event rather than the (read-only) native event
args[0] = event;
event.delegateTarget = this;
// Call the preDispatch hook for the mapped type, and let it bail if desired
if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
return;
}
// Determine handlers
handlerQueue = jQuery.event.handlers.call( this, event, handlers );
// Run delegates first; they may want to stop propagation beneath us
i = 0;
while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
event.currentTarget = matched.elem;
j = 0;
while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {
// Triggered event must either 1) have no namespace, or
// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
event.handleObj = handleObj;
event.data = handleObj.data;
ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
.apply( matched.elem, args );
if ( ret !== undefined ) {
if ( (event.result = ret) === false ) {
event.preventDefault();
event.stopPropagation();
}
}
}
}
}
// Call the postDispatch hook for the mapped type
if ( special.postDispatch ) {
special.postDispatch.call( this, event );
}
return event.result;
},
handlers: function( event, handlers ) {
var sel, handleObj, matches, i,
handlerQueue = [],
delegateCount = handlers.delegateCount,
cur = event.target;
// Find delegate handlers
// Black-hole SVG <use> instance trees (#13180)
// Avoid non-left-click bubbling in Firefox (#3861)
if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) {
/* jshint eqeqeq: false */
for ( ; cur != this; cur = cur.parentNode || this ) {
/* jshint eqeqeq: true */
// Don't check non-elements (#13208)
// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) {
matches = [];
for ( i = 0; i < delegateCount; i++ ) {
handleObj = handlers[ i ];
// Don't conflict with Object.prototype properties (#13203)
sel = handleObj.selector + " ";
if ( matches[ sel ] === undefined ) {
matches[ sel ] = handleObj.needsContext ?
jQuery( sel, this ).index( cur ) >= 0 :
jQuery.find( sel, this, null, [ cur ] ).length;
}
if ( matches[ sel ] ) {
matches.push( handleObj );
}
}
if ( matches.length ) {
handlerQueue.push({ elem: cur, handlers: matches });
}
}
}
}
// Add the remaining (directly-bound) handlers
if ( delegateCount < handlers.length ) {
handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });
}
return handlerQueue;
},
fix: function( event ) {
if ( event[ jQuery.expando ] ) {
return event;
}
// Create a writable copy of the event object and normalize some properties
var i, prop, copy,
type = event.type,
originalEvent = event,
fixHook = this.fixHooks[ type ];
if ( !fixHook ) {
this.fixHooks[ type ] = fixHook =
rmouseEvent.test( type ) ? this.mouseHooks :
rkeyEvent.test( type ) ? this.keyHooks :
{};
}
copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
event = new jQuery.Event( originalEvent );
i = copy.length;
while ( i-- ) {
prop = copy[ i ];
event[ prop ] = originalEvent[ prop ];
}
// Support: IE<9
// Fix target property (#1925)
if ( !event.target ) {
event.target = originalEvent.srcElement || document;
}
// Support: Chrome 23+, Safari?
// Target should not be a text node (#504, #13143)
if ( event.target.nodeType === 3 ) {
event.target = event.target.parentNode;
}
// Support: IE<9
// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)
event.metaKey = !!event.metaKey;
return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
},
// Includes some event props shared by KeyEvent and MouseEvent
props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
fixHooks: {},
keyHooks: {
props: "char charCode key keyCode".split(" "),
filter: function( event, original ) {
// Add which for key events
if ( event.which == null ) {
event.which = original.charCode != null ? original.charCode : original.keyCode;
}
return event;
}
},
mouseHooks: {
props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
filter: function( event, original ) {
var body, eventDoc, doc,
button = original.button,
fromElement = original.fromElement;
// Calculate pageX/Y if missing and clientX/Y available
if ( event.pageX == null && original.clientX != null ) {
eventDoc = event.target.ownerDocument || document;
doc = eventDoc.documentElement;
body = eventDoc.body;
event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 );
}
// Add relatedTarget, if necessary
if ( !event.relatedTarget && fromElement ) {
event.relatedTarget = fromElement === event.target ? original.toElement : fromElement;
}
// Add which for click: 1 === left; 2 === middle; 3 === right
// Note: button is not normalized, so don't use it
if ( !event.which && button !== undefined ) {
event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
}
return event;
}
},
special: {
load: {
// Prevent triggered image.load events from bubbling to window.load
noBubble: true
},
focus: {
// Fire native event if possible so blur/focus sequence is correct
trigger: function() {
if ( this !== safeActiveElement() && this.focus ) {
try {
this.focus();
return false;
} catch ( e ) {
// Support: IE<9
// If we error on focus to hidden element (#1486, #12518),
// let .trigger() run the handlers
}
}
},
delegateType: "focusin"
},
blur: {
trigger: function() {
if ( this === safeActiveElement() && this.blur ) {
this.blur();
return false;
}
},
delegateType: "focusout"
},
click: {
// For checkbox, fire native event so checked state will be right
trigger: function() {
if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) {
this.click();
return false;
}
},
// For cross-browser consistency, don't fire native .click() on links
_default: function( event ) {
return jQuery.nodeName( event.target, "a" );
}
},
beforeunload: {
postDispatch: function( event ) {
// Support: Firefox 20+
// Firefox doesn't alert if the returnValue field is not set.
if ( event.result !== undefined && event.originalEvent ) {
event.originalEvent.returnValue = event.result;
}
}
}
},
simulate: function( type, elem, event, bubble ) {
// Piggyback on a donor event to simulate a different one.
// Fake originalEvent to avoid donor's stopPropagation, but if the
// simulated event prevents default then we do the same on the donor.
var e = jQuery.extend(
new jQuery.Event(),
event,
{
type: type,
isSimulated: true,
originalEvent: {}
}
);
if ( bubble ) {
jQuery.event.trigger( e, null, elem );
} else {
jQuery.event.dispatch.call( elem, e );
}
if ( e.isDefaultPrevented() ) {
event.preventDefault();
}
}
};
jQuery.removeEvent = document.removeEventListener ?
function( elem, type, handle ) {
if ( elem.removeEventListener ) {
elem.removeEventListener( type, handle, false );
}
} :
function( elem, type, handle ) {
var name = "on" + type;
if ( elem.detachEvent ) {
// #8545, #7054, preventing memory leaks for custom events in IE6-8
// detachEvent needed property on element, by name of that event, to properly expose it to GC
if ( typeof elem[ name ] === strundefined ) {
elem[ name ] = null;
}
elem.detachEvent( name, handle );
}
};
jQuery.Event = function( src, props ) {
// Allow instantiation without the 'new' keyword
if ( !(this instanceof jQuery.Event) ) {
return new jQuery.Event( src, props );
}
// Event object
if ( src && src.type ) {
this.originalEvent = src;
this.type = src.type;
// Events bubbling up the document may have been marked as prevented
// by a handler lower down the tree; reflect the correct value.
this.isDefaultPrevented = src.defaultPrevented ||
src.defaultPrevented === undefined &&
// Support: IE < 9, Android < 4.0
src.returnValue === false ?
returnTrue :
returnFalse;
// Event type
} else {
this.type = src;
}
// Put explicitly provided properties onto the event object
if ( props ) {
jQuery.extend( this, props );
}
// Create a timestamp if incoming event doesn't have one
this.timeStamp = src && src.timeStamp || jQuery.now();
// Mark it as fixed
this[ jQuery.expando ] = true;
};
// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
jQuery.Event.prototype = {
isDefaultPrevented: returnFalse,
isPropagationStopped: returnFalse,
isImmediatePropagationStopped: returnFalse,
preventDefault: function() {
var e = this.originalEvent;
this.isDefaultPrevented = returnTrue;
if ( !e ) {
return;
}
// If preventDefault exists, run it on the original event
if ( e.preventDefault ) {
e.preventDefault();
// Support: IE
// Otherwise set the returnValue property of the original event to false
} else {
e.returnValue = false;
}
},
stopPropagation: function() {
var e = this.originalEvent;
this.isPropagationStopped = returnTrue;
if ( !e ) {
return;
}
// If stopPropagation exists, run it on the original event
if ( e.stopPropagation ) {
e.stopPropagation();
}
// Support: IE
// Set the cancelBubble property of the original event to true
e.cancelBubble = true;
},
stopImmediatePropagation: function() {
var e = this.originalEvent;
this.isImmediatePropagationStopped = returnTrue;
if ( e && e.stopImmediatePropagation ) {
e.stopImmediatePropagation();
}
this.stopPropagation();
}
};
// Create mouseenter/leave events using mouseover/out and event-time checks
jQuery.each({
mouseenter: "mouseover",
mouseleave: "mouseout",
pointerenter: "pointerover",
pointerleave: "pointerout"
}, function( orig, fix ) {
jQuery.event.special[ orig ] = {
delegateType: fix,
bindType: fix,
handle: function( event ) {
var ret,
target = this,
related = event.relatedTarget,
handleObj = event.handleObj;
// For mousenter/leave call the handler if related is outside the target.
// NB: No relatedTarget if the mouse left/entered the browser window
if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
event.type = handleObj.origType;
ret = handleObj.handler.apply( this, arguments );
event.type = fix;
}
return ret;
}
};
});
// IE submit delegation
if ( !support.submitBubbles ) {
jQuery.event.special.submit = {
setup: function() {
// Only need this for delegated form submit events
if ( jQuery.nodeName( this, "form" ) ) {
return false;
}
// Lazy-add a submit handler when a descendant form may potentially be submitted
jQuery.event.add( this, "click._submit keypress._submit", function( e ) {
// Node name check avoids a VML-related crash in IE (#9807)
var elem = e.target,
form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined;
if ( form && !jQuery._data( form, "submitBubbles" ) ) {
jQuery.event.add( form, "submit._submit", function( event ) {
event._submit_bubble = true;
});
jQuery._data( form, "submitBubbles", true );
}
});
// return undefined since we don't need an event listener
},
postDispatch: function( event ) {
// If form was submitted by the user, bubble the event up the tree
if ( event._submit_bubble ) {
delete event._submit_bubble;
if ( this.parentNode && !event.isTrigger ) {
jQuery.event.simulate( "submit", this.parentNode, event, true );
}
}
},
teardown: function() {
// Only need this for delegated form submit events
if ( jQuery.nodeName( this, "form" ) ) {
return false;
}
// Remove delegated handlers; cleanData eventually reaps submit handlers attached above
jQuery.event.remove( this, "._submit" );
}
};
}
// IE change delegation and checkbox/radio fix
if ( !support.changeBubbles ) {
jQuery.event.special.change = {
setup: function() {
if ( rformElems.test( this.nodeName ) ) {
// IE doesn't fire change on a check/radio until blur; trigger it on click
// after a propertychange. Eat the blur-change in special.change.handle.
// This still fires onchange a second time for check/radio after blur.
if ( this.type === "checkbox" || this.type === "radio" ) {
jQuery.event.add( this, "propertychange._change", function( event ) {
if ( event.originalEvent.propertyName === "checked" ) {
this._just_changed = true;
}
});
jQuery.event.add( this, "click._change", function( event ) {
if ( this._just_changed && !event.isTrigger ) {
this._just_changed = false;
}
// Allow triggered, simulated change events (#11500)
jQuery.event.simulate( "change", this, event, true );
});
}
return false;
}
// Delegated event; lazy-add a change handler on descendant inputs
jQuery.event.add( this, "beforeactivate._change", function( e ) {
var elem = e.target;
if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) {
jQuery.event.add( elem, "change._change", function( event ) {
if ( this.parentNode && !event.isSimulated && !event.isTrigger ) {
jQuery.event.simulate( "change", this.parentNode, event, true );
}
});
jQuery._data( elem, "changeBubbles", true );
}
});
},
handle: function( event ) {
var elem = event.target;
// Swallow native change events from checkbox/radio, we already triggered them above
if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) {
return event.handleObj.handler.apply( this, arguments );
}
},
teardown: function() {
jQuery.event.remove( this, "._change" );
return !rformElems.test( this.nodeName );
}
};
}
// Create "bubbling" focus and blur events
if ( !support.focusinBubbles ) {
jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
// Attach a single capturing handler on the document while someone wants focusin/focusout
var handler = function( event ) {
jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
};
jQuery.event.special[ fix ] = {
setup: function() {
var doc = this.ownerDocument || this,
attaches = jQuery._data( doc, fix );
if ( !attaches ) {
doc.addEventListener( orig, handler, true );
}
jQuery._data( doc, fix, ( attaches || 0 ) + 1 );
},
teardown: function() {
var doc = this.ownerDocument || this,
attaches = jQuery._data( doc, fix ) - 1;
if ( !attaches ) {
doc.removeEventListener( orig, handler, true );
jQuery._removeData( doc, fix );
} else {
jQuery._data( doc, fix, attaches );
}
}
};
});
}
jQuery.fn.extend({
on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
var type, origFn;
// Types can be a map of types/handlers
if ( typeof types === "object" ) {
// ( types-Object, selector, data )
if ( typeof selector !== "string" ) {
// ( types-Object, data )
data = data || selector;
selector = undefined;
}
for ( type in types ) {
this.on( type, selector, data, types[ type ], one );
}
return this;
}
if ( data == null && fn == null ) {
// ( types, fn )
fn = selector;
data = selector = undefined;
} else if ( fn == null ) {
if ( typeof selector === "string" ) {
// ( types, selector, fn )
fn = data;
data = undefined;
} else {
// ( types, data, fn )
fn = data;
data = selector;
selector = undefined;
}
}
if ( fn === false ) {
fn = returnFalse;
} else if ( !fn ) {
return this;
}
if ( one === 1 ) {
origFn = fn;
fn = function( event ) {
// Can use an empty set, since event contains the info
jQuery().off( event );
return origFn.apply( this, arguments );
};
// Use same guid so caller can remove using origFn
fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
}
return this.each( function() {
jQuery.event.add( this, types, fn, data, selector );
});
},
one: function( types, selector, data, fn ) {
return this.on( types, selector, data, fn, 1 );
},
off: function( types, selector, fn ) {
var handleObj, type;
if ( types && types.preventDefault && types.handleObj ) {
// ( event ) dispatched jQuery.Event
handleObj = types.handleObj;
jQuery( types.delegateTarget ).off(
handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
handleObj.selector,
handleObj.handler
);
return this;
}
if ( typeof types === "object" ) {
// ( types-object [, selector] )
for ( type in types ) {
this.off( type, selector, types[ type ] );
}
return this;
}
if ( selector === false || typeof selector === "function" ) {
// ( types [, fn] )
fn = selector;
selector = undefined;
}
if ( fn === false ) {
fn = returnFalse;
}
return this.each(function() {
jQuery.event.remove( this, types, fn, selector );
});
},
trigger: function( type, data ) {
return this.each(function() {
jQuery.event.trigger( type, data, this );
});
},
triggerHandler: function( type, data ) {
var elem = this[0];
if ( elem ) {
return jQuery.event.trigger( type, data, elem, true );
}
}
});
function createSafeFragment( document ) {
var list = nodeNames.split( "|" ),
safeFrag = document.createDocumentFragment();
if ( safeFrag.createElement ) {
while ( list.length ) {
safeFrag.createElement(
list.pop()
);
}
}
return safeFrag;
}
var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" +
"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g,
rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"),
rleadingWhitespace = /^\s+/,
rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
rtagName = /<([\w:]+)/,
rtbody = /<tbody/i,
rhtml = /<|&#?\w+;/,
rnoInnerhtml = /<(?:script|style|link)/i,
// checked="checked" or checked
rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
rscriptType = /^$|\/(?:java|ecma)script/i,
rscriptTypeMasked = /^true\/(.*)/,
rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
// We have to close these tags to support XHTML (#13200)
wrapMap = {
option: [ 1, "<select multiple='multiple'>", "</select>" ],
legend: [ 1, "<fieldset>", "</fieldset>" ],
area: [ 1, "<map>", "</map>" ],
param: [ 1, "<object>", "</object>" ],
thead: [ 1, "<table>", "</table>" ],
tr: [ 2, "<table><tbody>", "</tbody></table>" ],
col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ],
td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,
// unless wrapped in a div with non-breaking characters in front of it.
_default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ]
},
safeFragment = createSafeFragment( document ),
fragmentDiv = safeFragment.appendChild( document.createElement("div") );
wrapMap.optgroup = wrapMap.option;
wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
wrapMap.th = wrapMap.td;
function getAll( context, tag ) {
var elems, elem,
i = 0,
found = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || "*" ) :
typeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || "*" ) :
undefined;
if ( !found ) {
for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {
if ( !tag || jQuery.nodeName( elem, tag ) ) {
found.push( elem );
} else {
jQuery.merge( found, getAll( elem, tag ) );
}
}
}
return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
jQuery.merge( [ context ], found ) :
found;
}
// Used in buildFragment, fixes the defaultChecked property
function fixDefaultChecked( elem ) {
if ( rcheckableType.test( elem.type ) ) {
elem.defaultChecked = elem.checked;
}
}
// Support: IE<8
// Manipulating tables requires a tbody
function manipulationTarget( elem, content ) {
return jQuery.nodeName( elem, "table" ) &&
jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
elem.getElementsByTagName("tbody")[0] ||
elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
elem;
}
// Replace/restore the type attribute of script elements for safe DOM manipulation
function disableScript( elem ) {
elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type;
return elem;
}
function restoreScript( elem ) {
var match = rscriptTypeMasked.exec( elem.type );
if ( match ) {
elem.type = match[1];
} else {
elem.removeAttribute("type");
}
return elem;
}
// Mark scripts as having already been evaluated
function setGlobalEval( elems, refElements ) {
var elem,
i = 0;
for ( ; (elem = elems[i]) != null; i++ ) {
jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) );
}
}
function cloneCopyEvent( src, dest ) {
if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {
return;
}
var type, i, l,
oldData = jQuery._data( src ),
curData = jQuery._data( dest, oldData ),
events = oldData.events;
if ( events ) {
delete curData.handle;
curData.events = {};
for ( type in events ) {
for ( i = 0, l = events[ type ].length; i < l; i++ ) {
jQuery.event.add( dest, type, events[ type ][ i ] );
}
}
}
// make the cloned public data object a copy from the original
if ( curData.data ) {
curData.data = jQuery.extend( {}, curData.data );
}
}
function fixCloneNodeIssues( src, dest ) {
var nodeName, e, data;
// We do not need to do anything for non-Elements
if ( dest.nodeType !== 1 ) {
return;
}
nodeName = dest.nodeName.toLowerCase();
// IE6-8 copies events bound via attachEvent when using cloneNode.
if ( !support.noCloneEvent && dest[ jQuery.expando ] ) {
data = jQuery._data( dest );
for ( e in data.events ) {
jQuery.removeEvent( dest, e, data.handle );
}
// Event data gets referenced instead of copied if the expando gets copied too
dest.removeAttribute( jQuery.expando );
}
// IE blanks contents when cloning scripts, and tries to evaluate newly-set text
if ( nodeName === "script" && dest.text !== src.text ) {
disableScript( dest ).text = src.text;
restoreScript( dest );
// IE6-10 improperly clones children of object elements using classid.
// IE10 throws NoModificationAllowedError if parent is null, #12132.
} else if ( nodeName === "object" ) {
if ( dest.parentNode ) {
dest.outerHTML = src.outerHTML;
}
// This path appears unavoidable for IE9. When cloning an object
// element in IE9, the outerHTML strategy above is not sufficient.
// If the src has innerHTML and the destination does not,
// copy the src.innerHTML into the dest.innerHTML. #10324
if ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {
dest.innerHTML = src.innerHTML;
}
} else if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
// IE6-8 fails to persist the checked state of a cloned checkbox
// or radio button. Worse, IE6-7 fail to give the cloned element
// a checked appearance if the defaultChecked value isn't also set
dest.defaultChecked = dest.checked = src.checked;
// IE6-7 get confused and end up setting the value of a cloned
// checkbox/radio button to an empty string instead of "on"
if ( dest.value !== src.value ) {
dest.value = src.value;
}
// IE6-8 fails to return the selected option to the default selected
// state when cloning options
} else if ( nodeName === "option" ) {
dest.defaultSelected = dest.selected = src.defaultSelected;
// IE6-8 fails to set the defaultValue to the correct value when
// cloning other types of input fields
} else if ( nodeName === "input" || nodeName === "textarea" ) {
dest.defaultValue = src.defaultValue;
}
}
jQuery.extend({
clone: function( elem, dataAndEvents, deepDataAndEvents ) {
var destElements, node, clone, i, srcElements,
inPage = jQuery.contains( elem.ownerDocument, elem );
if ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) {
clone = elem.cloneNode( true );
// IE<=8 does not properly clone detached, unknown element nodes
} else {
fragmentDiv.innerHTML = elem.outerHTML;
fragmentDiv.removeChild( clone = fragmentDiv.firstChild );
}
if ( (!support.noCloneEvent || !support.noCloneChecked) &&
(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {
// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
destElements = getAll( clone );
srcElements = getAll( elem );
// Fix all IE cloning issues
for ( i = 0; (node = srcElements[i]) != null; ++i ) {
// Ensure that the destination node is not null; Fixes #9587
if ( destElements[i] ) {
fixCloneNodeIssues( node, destElements[i] );
}
}
}
// Copy the events from the original to the clone
if ( dataAndEvents ) {
if ( deepDataAndEvents ) {
srcElements = srcElements || getAll( elem );
destElements = destElements || getAll( clone );
for ( i = 0; (node = srcElements[i]) != null; i++ ) {
cloneCopyEvent( node, destElements[i] );
}
} else {
cloneCopyEvent( elem, clone );
}
}
// Preserve script evaluation history
destElements = getAll( clone, "script" );
if ( destElements.length > 0 ) {
setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
}
destElements = srcElements = node = null;
// Return the cloned set
return clone;
},
buildFragment: function( elems, context, scripts, selection ) {
var j, elem, contains,
tmp, tag, tbody, wrap,
l = elems.length,
// Ensure a safe fragment
safe = createSafeFragment( context ),
nodes = [],
i = 0;
for ( ; i < l; i++ ) {
elem = elems[ i ];
if ( elem || elem === 0 ) {
// Add nodes directly
if ( jQuery.type( elem ) === "object" ) {
jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
// Convert non-html into a text node
} else if ( !rhtml.test( elem ) ) {
nodes.push( context.createTextNode( elem ) );
// Convert html into DOM nodes
} else {
tmp = tmp || safe.appendChild( context.createElement("div") );
// Deserialize a standard representation
tag = (rtagName.exec( elem ) || [ "", "" ])[ 1 ].toLowerCase();
wrap = wrapMap[ tag ] || wrapMap._default;
tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[2];
// Descend through wrappers to the right content
j = wrap[0];
while ( j-- ) {
tmp = tmp.lastChild;
}
// Manually add leading whitespace removed by IE
if ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );
}
// Remove IE's autoinserted <tbody> from table fragments
if ( !support.tbody ) {
// String was a <table>, *may* have spurious <tbody>
elem = tag === "table" && !rtbody.test( elem ) ?
tmp.firstChild :
// String was a bare <thead> or <tfoot>
wrap[1] === "<table>" && !rtbody.test( elem ) ?
tmp :
0;
j = elem && elem.childNodes.length;
while ( j-- ) {
if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) {
elem.removeChild( tbody );
}
}
}
jQuery.merge( nodes, tmp.childNodes );
// Fix #12392 for WebKit and IE > 9
tmp.textContent = "";
// Fix #12392 for oldIE
while ( tmp.firstChild ) {
tmp.removeChild( tmp.firstChild );
}
// Remember the top-level container for proper cleanup
tmp = safe.lastChild;
}
}
}
// Fix #11356: Clear elements from fragment
if ( tmp ) {
safe.removeChild( tmp );
}
// Reset defaultChecked for any radios and checkboxes
// about to be appended to the DOM in IE 6/7 (#8060)
if ( !support.appendChecked ) {
jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked );
}
i = 0;
while ( (elem = nodes[ i++ ]) ) {
// #4087 - If origin and destination elements are the same, and this is
// that element, do not do anything
if ( selection && jQuery.inArray( elem, selection ) !== -1 ) {
continue;
}
contains = jQuery.contains( elem.ownerDocument, elem );
// Append to fragment
tmp = getAll( safe.appendChild( elem ), "script" );
// Preserve script evaluation history
if ( contains ) {
setGlobalEval( tmp );
}
// Capture executables
if ( scripts ) {
j = 0;
while ( (elem = tmp[ j++ ]) ) {
if ( rscriptType.test( elem.type || "" ) ) {
scripts.push( elem );
}
}
}
}
tmp = null;
return safe;
},
cleanData: function( elems, /* internal */ acceptData ) {
var elem, type, id, data,
i = 0,
internalKey = jQuery.expando,
cache = jQuery.cache,
deleteExpando = support.deleteExpando,
special = jQuery.event.special;
for ( ; (elem = elems[i]) != null; i++ ) {
if ( acceptData || jQuery.acceptData( elem ) ) {
id = elem[ internalKey ];
data = id && cache[ id ];
if ( data ) {
if ( data.events ) {
for ( type in data.events ) {
if ( special[ type ] ) {
jQuery.event.remove( elem, type );
// This is a shortcut to avoid jQuery.event.remove's overhead
} else {
jQuery.removeEvent( elem, type, data.handle );
}
}
}
// Remove cache only if it was not already removed by jQuery.event.remove
if ( cache[ id ] ) {
delete cache[ id ];
// IE does not allow us to delete expando properties from nodes,
// nor does it have a removeAttribute function on Document nodes;
// we must handle all of these cases
if ( deleteExpando ) {
delete elem[ internalKey ];
} else if ( typeof elem.removeAttribute !== strundefined ) {
elem.removeAttribute( internalKey );
} else {
elem[ internalKey ] = null;
}
deletedIds.push( id );
}
}
}
}
}
});
jQuery.fn.extend({
text: function( value ) {
return access( this, function( value ) {
return value === undefined ?
jQuery.text( this ) :
this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );
}, null, value, arguments.length );
},
append: function() {
return this.domManip( arguments, function( elem ) {
if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
var target = manipulationTarget( this, elem );
target.appendChild( elem );
}
});
},
prepend: function() {
return this.domManip( arguments, function( elem ) {
if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
var target = manipulationTarget( this, elem );
target.insertBefore( elem, target.firstChild );
}
});
},
before: function() {
return this.domManip( arguments, function( elem ) {
if ( this.parentNode ) {
this.parentNode.insertBefore( elem, this );
}
});
},
after: function() {
return this.domManip( arguments, function( elem ) {
if ( this.parentNode ) {
this.parentNode.insertBefore( elem, this.nextSibling );
}
});
},
remove: function( selector, keepData /* Internal Use Only */ ) {
var elem,
elems = selector ? jQuery.filter( selector, this ) : this,
i = 0;
for ( ; (elem = elems[i]) != null; i++ ) {
if ( !keepData && elem.nodeType === 1 ) {
jQuery.cleanData( getAll( elem ) );
}
if ( elem.parentNode ) {
if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {
setGlobalEval( getAll( elem, "script" ) );
}
elem.parentNode.removeChild( elem );
}
}
return this;
},
empty: function() {
var elem,
i = 0;
for ( ; (elem = this[i]) != null; i++ ) {
// Remove element nodes and prevent memory leaks
if ( elem.nodeType === 1 ) {
jQuery.cleanData( getAll( elem, false ) );
}
// Remove any remaining nodes
while ( elem.firstChild ) {
elem.removeChild( elem.firstChild );
}
// If this is a select, ensure that it displays empty (#12336)
// Support: IE<9
if ( elem.options && jQuery.nodeName( elem, "select" ) ) {
elem.options.length = 0;
}
}
return this;
},
clone: function( dataAndEvents, deepDataAndEvents ) {
dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
return this.map(function() {
return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
});
},
html: function( value ) {
return access( this, function( value ) {
var elem = this[ 0 ] || {},
i = 0,
l = this.length;
if ( value === undefined ) {
return elem.nodeType === 1 ?
elem.innerHTML.replace( rinlinejQuery, "" ) :
undefined;
}
// See if we can take a shortcut and just use innerHTML
if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
( support.htmlSerialize || !rnoshimcache.test( value ) ) &&
( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&
!wrapMap[ (rtagName.exec( value ) || [ "", "" ])[ 1 ].toLowerCase() ] ) {
value = value.replace( rxhtmlTag, "<$1></$2>" );
try {
for (; i < l; i++ ) {
// Remove element nodes and prevent memory leaks
elem = this[i] || {};
if ( elem.nodeType === 1 ) {
jQuery.cleanData( getAll( elem, false ) );
elem.innerHTML = value;
}
}
elem = 0;
// If using innerHTML throws an exception, use the fallback method
} catch(e) {}
}
if ( elem ) {
this.empty().append( value );
}
}, null, value, arguments.length );
},
replaceWith: function() {
var arg = arguments[ 0 ];
// Make the changes, replacing each context element with the new content
this.domManip( arguments, function( elem ) {
arg = this.parentNode;
jQuery.cleanData( getAll( this ) );
if ( arg ) {
arg.replaceChild( elem, this );
}
});
// Force removal if there was no new content (e.g., from empty arguments)
return arg && (arg.length || arg.nodeType) ? this : this.remove();
},
detach: function( selector ) {
return this.remove( selector, true );
},
domManip: function( args, callback ) {
// Flatten any nested arrays
args = concat.apply( [], args );
var first, node, hasScripts,
scripts, doc, fragment,
i = 0,
l = this.length,
set = this,
iNoClone = l - 1,
value = args[0],
isFunction = jQuery.isFunction( value );
// We can't cloneNode fragments that contain checked, in WebKit
if ( isFunction ||
( l > 1 && typeof value === "string" &&
!support.checkClone && rchecked.test( value ) ) ) {
return this.each(function( index ) {
var self = set.eq( index );
if ( isFunction ) {
args[0] = value.call( this, index, self.html() );
}
self.domManip( args, callback );
});
}
if ( l ) {
fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );
first = fragment.firstChild;
if ( fragment.childNodes.length === 1 ) {
fragment = first;
}
if ( first ) {
scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
hasScripts = scripts.length;
// Use the original fragment for the last item instead of the first because it can end up
// being emptied incorrectly in certain situations (#8070).
for ( ; i < l; i++ ) {
node = fragment;
if ( i !== iNoClone ) {
node = jQuery.clone( node, true, true );
// Keep references to cloned scripts for later restoration
if ( hasScripts ) {
jQuery.merge( scripts, getAll( node, "script" ) );
}
}
callback.call( this[i], node, i );
}
if ( hasScripts ) {
doc = scripts[ scripts.length - 1 ].ownerDocument;
// Reenable scripts
jQuery.map( scripts, restoreScript );
// Evaluate executable scripts on first document insertion
for ( i = 0; i < hasScripts; i++ ) {
node = scripts[ i ];
if ( rscriptType.test( node.type || "" ) &&
!jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) {
if ( node.src ) {
// Optional AJAX dependency, but won't run scripts if not present
if ( jQuery._evalUrl ) {
jQuery._evalUrl( node.src );
}
} else {
jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) );
}
}
}
}
// Fix #11809: Avoid leaking memory
fragment = first = null;
}
}
return this;
}
});
jQuery.each({
appendTo: "append",
prependTo: "prepend",
insertBefore: "before",
insertAfter: "after",
replaceAll: "replaceWith"
}, function( name, original ) {
jQuery.fn[ name ] = function( selector ) {
var elems,
i = 0,
ret = [],
insert = jQuery( selector ),
last = insert.length - 1;
for ( ; i <= last; i++ ) {
elems = i === last ? this : this.clone(true);
jQuery( insert[i] )[ original ]( elems );
// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()
push.apply( ret, elems.get() );
}
return this.pushStack( ret );
};
});
var iframe,
elemdisplay = {};
/**
* Retrieve the actual display of a element
* @param {String} name nodeName of the element
* @param {Object} doc Document object
*/
// Called only from within defaultDisplay
function actualDisplay( name, doc ) {
var style,
elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
// getDefaultComputedStyle might be reliably used only on attached element
display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?
// Use of this method is a temporary fix (more like optmization) until something better comes along,
// since it was removed from specification and supported only in FF
style.display : jQuery.css( elem[ 0 ], "display" );
// We don't have any data stored on the element,
// so use "detach" method as fast way to get rid of the element
elem.detach();
return display;
}
/**
* Try to determine the default display value of an element
* @param {String} nodeName
*/
function defaultDisplay( nodeName ) {
var doc = document,
display = elemdisplay[ nodeName ];
if ( !display ) {
display = actualDisplay( nodeName, doc );
// If the simple way fails, read from inside an iframe
if ( display === "none" || !display ) {
// Use the already-created iframe if possible
iframe = (iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" )).appendTo( doc.documentElement );
// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
doc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;
// Support: IE
doc.write();
doc.close();
display = actualDisplay( nodeName, doc );
iframe.detach();
}
// Store the correct default display
elemdisplay[ nodeName ] = display;
}
return display;
}
(function() {
var shrinkWrapBlocksVal;
support.shrinkWrapBlocks = function() {
if ( shrinkWrapBlocksVal != null ) {
return shrinkWrapBlocksVal;
}
// Will be changed later if needed.
shrinkWrapBlocksVal = false;
// Minified: var b,c,d
var div, body, container;
body = document.getElementsByTagName( "body" )[ 0 ];
if ( !body || !body.style ) {
// Test fired too early or in an unsupported environment, exit.
return;
}
// Setup
div = document.createElement( "div" );
container = document.createElement( "div" );
container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px";
body.appendChild( container ).appendChild( div );
// Support: IE6
// Check if elements with layout shrink-wrap their children
if ( typeof div.style.zoom !== strundefined ) {
// Reset CSS: box-sizing; display; margin; border
div.style.cssText =
// Support: Firefox<29, Android 2.3
// Vendor-prefix box-sizing
"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
"box-sizing:content-box;display:block;margin:0;border:0;" +
"padding:1px;width:1px;zoom:1";
div.appendChild( document.createElement( "div" ) ).style.width = "5px";
shrinkWrapBlocksVal = div.offsetWidth !== 3;
}
body.removeChild( container );
return shrinkWrapBlocksVal;
};
})();
var rmargin = (/^margin/);
var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
var getStyles, curCSS,
rposition = /^(top|right|bottom|left)$/;
if ( window.getComputedStyle ) {
getStyles = function( elem ) {
return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
};
curCSS = function( elem, name, computed ) {
var width, minWidth, maxWidth, ret,
style = elem.style;
computed = computed || getStyles( elem );
// getPropertyValue is only needed for .css('filter') in IE9, see #12537
ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;
if ( computed ) {
if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
ret = jQuery.style( elem, name );
}
// A tribute to the "awesome hack by Dean Edwards"
// Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right
// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
// Remember the original values
width = style.width;
minWidth = style.minWidth;
maxWidth = style.maxWidth;
// Put in the new values to get a computed value out
style.minWidth = style.maxWidth = style.width = ret;
ret = computed.width;
// Revert the changed values
style.width = width;
style.minWidth = minWidth;
style.maxWidth = maxWidth;
}
}
// Support: IE
// IE returns zIndex value as an integer.
return ret === undefined ?
ret :
ret + "";
};
} else if ( document.documentElement.currentStyle ) {
getStyles = function( elem ) {
return elem.currentStyle;
};
curCSS = function( elem, name, computed ) {
var left, rs, rsLeft, ret,
style = elem.style;
computed = computed || getStyles( elem );
ret = computed ? computed[ name ] : undefined;
// Avoid setting ret to empty string here
// so we don't default to auto
if ( ret == null && style && style[ name ] ) {
ret = style[ name ];
}
// From the awesome hack by Dean Edwards
// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
// If we're not dealing with a regular pixel number
// but a number that has a weird ending, we need to convert it to pixels
// but not position css attributes, as those are proportional to the parent element instead
// and we can't measure the parent instead because it might trigger a "stacking dolls" problem
if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {
// Remember the original values
left = style.left;
rs = elem.runtimeStyle;
rsLeft = rs && rs.left;
// Put in the new values to get a computed value out
if ( rsLeft ) {
rs.left = elem.currentStyle.left;
}
style.left = name === "fontSize" ? "1em" : ret;
ret = style.pixelLeft + "px";
// Revert the changed values
style.left = left;
if ( rsLeft ) {
rs.left = rsLeft;
}
}
// Support: IE
// IE returns zIndex value as an integer.
return ret === undefined ?
ret :
ret + "" || "auto";
};
}
function addGetHookIf( conditionFn, hookFn ) {
// Define the hook, we'll check on the first run if it's really needed.
return {
get: function() {
var condition = conditionFn();
if ( condition == null ) {
// The test was not ready at this point; screw the hook this time
// but check again when needed next time.
return;
}
if ( condition ) {
// Hook not needed (or it's not possible to use it due to missing dependency),
// remove it.
// Since there are no other hooks for marginRight, remove the whole object.
delete this.get;
return;
}
// Hook needed; redefine it so that the support test is not executed again.
return (this.get = hookFn).apply( this, arguments );
}
};
}
(function() {
// Minified: var b,c,d,e,f,g, h,i
var div, style, a, pixelPositionVal, boxSizingReliableVal,
reliableHiddenOffsetsVal, reliableMarginRightVal;
// Setup
div = document.createElement( "div" );
div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
a = div.getElementsByTagName( "a" )[ 0 ];
style = a && a.style;
// Finish early in limited (non-browser) environments
if ( !style ) {
return;
}
style.cssText = "float:left;opacity:.5";
// Support: IE<9
// Make sure that element opacity exists (as opposed to filter)
support.opacity = style.opacity === "0.5";
// Verify style float existence
// (IE uses styleFloat instead of cssFloat)
support.cssFloat = !!style.cssFloat;
div.style.backgroundClip = "content-box";
div.cloneNode( true ).style.backgroundClip = "";
support.clearCloneStyle = div.style.backgroundClip === "content-box";
// Support: Firefox<29, Android 2.3
// Vendor-prefix box-sizing
support.boxSizing = style.boxSizing === "" || style.MozBoxSizing === "" ||
style.WebkitBoxSizing === "";
jQuery.extend(support, {
reliableHiddenOffsets: function() {
if ( reliableHiddenOffsetsVal == null ) {
computeStyleTests();
}
return reliableHiddenOffsetsVal;
},
boxSizingReliable: function() {
if ( boxSizingReliableVal == null ) {
computeStyleTests();
}
return boxSizingReliableVal;
},
pixelPosition: function() {
if ( pixelPositionVal == null ) {
computeStyleTests();
}
return pixelPositionVal;
},
// Support: Android 2.3
reliableMarginRight: function() {
if ( reliableMarginRightVal == null ) {
computeStyleTests();
}
return reliableMarginRightVal;
}
});
function computeStyleTests() {
// Minified: var b,c,d,j
var div, body, container, contents;
body = document.getElementsByTagName( "body" )[ 0 ];
if ( !body || !body.style ) {
// Test fired too early or in an unsupported environment, exit.
return;
}
// Setup
div = document.createElement( "div" );
container = document.createElement( "div" );
container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px";
body.appendChild( container ).appendChild( div );
div.style.cssText =
// Support: Firefox<29, Android 2.3
// Vendor-prefix box-sizing
"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;" +
"box-sizing:border-box;display:block;margin-top:1%;top:1%;" +
"border:1px;padding:1px;width:4px;position:absolute";
// Support: IE<9
// Assume reasonable values in the absence of getComputedStyle
pixelPositionVal = boxSizingReliableVal = false;
reliableMarginRightVal = true;
// Check for getComputedStyle so that this code is not run in IE<9.
if ( window.getComputedStyle ) {
pixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== "1%";
boxSizingReliableVal =
( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px";
// Support: Android 2.3
// Div with explicit width and no margin-right incorrectly
// gets computed margin-right based on width of container (#3333)
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
contents = div.appendChild( document.createElement( "div" ) );
// Reset CSS: box-sizing; display; margin; border; padding
contents.style.cssText = div.style.cssText =
// Support: Firefox<29, Android 2.3
// Vendor-prefix box-sizing
"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
"box-sizing:content-box;display:block;margin:0;border:0;padding:0";
contents.style.marginRight = contents.style.width = "0";
div.style.width = "1px";
reliableMarginRightVal =
!parseFloat( ( window.getComputedStyle( contents, null ) || {} ).marginRight );
}
// Support: IE8
// Check if table cells still have offsetWidth/Height when they are set
// to display:none and there are still other visible table cells in a
// table row; if so, offsetWidth/Height are not reliable for use when
// determining if an element has been hidden directly using
// display:none (it is still safe to use offsets if a parent element is
// hidden; don safety goggles and see bug #4512 for more information).
div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>";
contents = div.getElementsByTagName( "td" );
contents[ 0 ].style.cssText = "margin:0;border:0;padding:0;display:none";
reliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;
if ( reliableHiddenOffsetsVal ) {
contents[ 0 ].style.display = "";
contents[ 1 ].style.display = "none";
reliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;
}
body.removeChild( container );
}
})();
// A method for quickly swapping in/out CSS properties to get correct calculations.
jQuery.swap = function( elem, options, callback, args ) {
var ret, name,
old = {};
// Remember the old values, and insert the new ones
for ( name in options ) {
old[ name ] = elem.style[ name ];
elem.style[ name ] = options[ name ];
}
ret = callback.apply( elem, args || [] );
// Revert the old values
for ( name in options ) {
elem.style[ name ] = old[ name ];
}
return ret;
};
var
ralpha = /alpha\([^)]*\)/i,
ropacity = /opacity\s*=\s*([^)]*)/,
// swappable if display is none or starts with table except "table", "table-cell", or "table-caption"
// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
rdisplayswap = /^(none|table(?!-c[ea]).+)/,
rnumsplit = new RegExp( "^(" + pnum + ")(.*)$", "i" ),
rrelNum = new RegExp( "^([+-])=(" + pnum + ")", "i" ),
cssShow = { position: "absolute", visibility: "hidden", display: "block" },
cssNormalTransform = {
letterSpacing: "0",
fontWeight: "400"
},
cssPrefixes = [ "Webkit", "O", "Moz", "ms" ];
// return a css property mapped to a potentially vendor prefixed property
function vendorPropName( style, name ) {
// shortcut for names that are not vendor prefixed
if ( name in style ) {
return name;
}
// check for vendor prefixed names
var capName = name.charAt(0).toUpperCase() + name.slice(1),
origName = name,
i = cssPrefixes.length;
while ( i-- ) {
name = cssPrefixes[ i ] + capName;
if ( name in style ) {
return name;
}
}
return origName;
}
function showHide( elements, show ) {
var display, elem, hidden,
values = [],
index = 0,
length = elements.length;
for ( ; index < length; index++ ) {
elem = elements[ index ];
if ( !elem.style ) {
continue;
}
values[ index ] = jQuery._data( elem, "olddisplay" );
display = elem.style.display;
if ( show ) {
// Reset the inline display of this element to learn if it is
// being hidden by cascaded rules or not
if ( !values[ index ] && display === "none" ) {
elem.style.display = "";
}
// Set elements which have been overridden with display: none
// in a stylesheet to whatever the default browser style is
// for such an element
if ( elem.style.display === "" && isHidden( elem ) ) {
values[ index ] = jQuery._data( elem, "olddisplay", defaultDisplay(elem.nodeName) );
}
} else {
hidden = isHidden( elem );
if ( display && display !== "none" || !hidden ) {
jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) );
}
}
}
// Set the display of most of the elements in a second loop
// to avoid the constant reflow
for ( index = 0; index < length; index++ ) {
elem = elements[ index ];
if ( !elem.style ) {
continue;
}
if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
elem.style.display = show ? values[ index ] || "" : "none";
}
}
return elements;
}
function setPositiveNumber( elem, value, subtract ) {
var matches = rnumsplit.exec( value );
return matches ?
// Guard against undefined "subtract", e.g., when used as in cssHooks
Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) :
value;
}
function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
var i = extra === ( isBorderBox ? "border" : "content" ) ?
// If we already have the right measurement, avoid augmentation
4 :
// Otherwise initialize for horizontal or vertical properties
name === "width" ? 1 : 0,
val = 0;
for ( ; i < 4; i += 2 ) {
// both box models exclude margin, so add it if we want it
if ( extra === "margin" ) {
val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
}
if ( isBorderBox ) {
// border-box includes padding, so remove it if we want content
if ( extra === "content" ) {
val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
}
// at this point, extra isn't border nor margin, so remove border
if ( extra !== "margin" ) {
val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
}
} else {
// at this point, extra isn't content, so add padding
val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
// at this point, extra isn't content nor padding, so add border
if ( extra !== "padding" ) {
val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
}
}
}
return val;
}
function getWidthOrHeight( elem, name, extra ) {
// Start with offset property, which is equivalent to the border-box value
var valueIsBorderBox = true,
val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
styles = getStyles( elem ),
isBorderBox = support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
// some non-html elements return undefined for offsetWidth, so check for null/undefined
// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
if ( val <= 0 || val == null ) {
// Fall back to computed then uncomputed css if necessary
val = curCSS( elem, name, styles );
if ( val < 0 || val == null ) {
val = elem.style[ name ];
}
// Computed unit is not pixels. Stop here and return.
if ( rnumnonpx.test(val) ) {
return val;
}
// we need the check for style in case a browser which returns unreliable values
// for getComputedStyle silently falls back to the reliable elem.style
valueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );
// Normalize "", auto, and prepare for extra
val = parseFloat( val ) || 0;
}
// use the active box-sizing model to add/subtract irrelevant styles
return ( val +
augmentWidthOrHeight(
elem,
name,
extra || ( isBorderBox ? "border" : "content" ),
valueIsBorderBox,
styles
)
) + "px";
}
jQuery.extend({
// Add in style property hooks for overriding the default
// behavior of getting and setting a style property
cssHooks: {
opacity: {
get: function( elem, computed ) {
if ( computed ) {
// We should always get a number back from opacity
var ret = curCSS( elem, "opacity" );
return ret === "" ? "1" : ret;
}
}
}
},
// Don't automatically add "px" to these possibly-unitless properties
cssNumber: {
"columnCount": true,
"fillOpacity": true,
"flexGrow": true,
"flexShrink": true,
"fontWeight": true,
"lineHeight": true,
"opacity": true,
"order": true,
"orphans": true,
"widows": true,
"zIndex": true,
"zoom": true
},
// Add in properties whose names you wish to fix before
// setting or getting the value
cssProps: {
// normalize float css property
"float": support.cssFloat ? "cssFloat" : "styleFloat"
},
// Get and set the style property on a DOM Node
style: function( elem, name, value, extra ) {
// Don't set styles on text and comment nodes
if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
return;
}
// Make sure that we're working with the right name
var ret, type, hooks,
origName = jQuery.camelCase( name ),
style = elem.style;
name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );
// gets hook for the prefixed version
// followed by the unprefixed version
hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
// Check if we're setting a value
if ( value !== undefined ) {
type = typeof value;
// convert relative number strings (+= or -=) to relative numbers. #7345
if ( type === "string" && (ret = rrelNum.exec( value )) ) {
value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
// Fixes bug #9237
type = "number";
}
// Make sure that null and NaN values aren't set. See: #7116
if ( value == null || value !== value ) {
return;
}
// If a number was passed in, add 'px' to the (except for certain CSS properties)
if ( type === "number" && !jQuery.cssNumber[ origName ] ) {
value += "px";
}
// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,
// but it would mean to define eight (for every problematic property) identical functions
if ( !support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) {
style[ name ] = "inherit";
}
// If a hook was provided, use that value, otherwise just set the specified value
if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {
// Support: IE
// Swallow errors from 'invalid' CSS values (#5509)
try {
style[ name ] = value;
} catch(e) {}
}
} else {
// If a hook was provided get the non-computed value from there
if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
return ret;
}
// Otherwise just get the value from the style object
return style[ name ];
}
},
css: function( elem, name, extra, styles ) {
var num, val, hooks,
origName = jQuery.camelCase( name );
// Make sure that we're working with the right name
name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );
// gets hook for the prefixed version
// followed by the unprefixed version
hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
// If a hook was provided get the computed value from there
if ( hooks && "get" in hooks ) {
val = hooks.get( elem, true, extra );
}
// Otherwise, if a way to get the computed value exists, use that
if ( val === undefined ) {
val = curCSS( elem, name, styles );
}
//convert "normal" to computed value
if ( val === "normal" && name in cssNormalTransform ) {
val = cssNormalTransform[ name ];
}
// Return, converting to number if forced or a qualifier was provided and val looks numeric
if ( extra === "" || extra ) {
num = parseFloat( val );
return extra === true || jQuery.isNumeric( num ) ? num || 0 : val;
}
return val;
}
});
jQuery.each([ "height", "width" ], function( i, name ) {
jQuery.cssHooks[ name ] = {
get: function( elem, computed, extra ) {
if ( computed ) {
// certain elements can have dimension info if we invisibly show them
// however, it must have a current display style that would benefit from this
return rdisplayswap.test( jQuery.css( elem, "display" ) ) && elem.offsetWidth === 0 ?
jQuery.swap( elem, cssShow, function() {
return getWidthOrHeight( elem, name, extra );
}) :
getWidthOrHeight( elem, name, extra );
}
},
set: function( elem, value, extra ) {
var styles = extra && getStyles( elem );
return setPositiveNumber( elem, value, extra ?
augmentWidthOrHeight(
elem,
name,
extra,
support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
styles
) : 0
);
}
};
});
if ( !support.opacity ) {
jQuery.cssHooks.opacity = {
get: function( elem, computed ) {
// IE uses filters for opacity
return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ?
( 0.01 * parseFloat( RegExp.$1 ) ) + "" :
computed ? "1" : "";
},
set: function( elem, value ) {
var style = elem.style,
currentStyle = elem.currentStyle,
opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "",
filter = currentStyle && currentStyle.filter || style.filter || "";
// IE has trouble with opacity if it does not have layout
// Force it by setting the zoom level
style.zoom = 1;
// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652
// if value === "", then remove inline opacity #12685
if ( ( value >= 1 || value === "" ) &&
jQuery.trim( filter.replace( ralpha, "" ) ) === "" &&
style.removeAttribute ) {
// Setting style.filter to null, "" & " " still leave "filter:" in the cssText
// if "filter:" is present at all, clearType is disabled, we want to avoid this
// style.removeAttribute is IE Only, but so apparently is this code path...
style.removeAttribute( "filter" );
// if there is no filter style applied in a css rule or unset inline opacity, we are done
if ( value === "" || currentStyle && !currentStyle.filter ) {
return;
}
}
// otherwise, set new filter values
style.filter = ralpha.test( filter ) ?
filter.replace( ralpha, opacity ) :
filter + " " + opacity;
}
};
}
jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
function( elem, computed ) {
if ( computed ) {
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
// Work around by temporarily setting element display to inline-block
return jQuery.swap( elem, { "display": "inline-block" },
curCSS, [ elem, "marginRight" ] );
}
}
);
// These hooks are used by animate to expand properties
jQuery.each({
margin: "",
padding: "",
border: "Width"
}, function( prefix, suffix ) {
jQuery.cssHooks[ prefix + suffix ] = {
expand: function( value ) {
var i = 0,
expanded = {},
// assumes a single number if not a string
parts = typeof value === "string" ? value.split(" ") : [ value ];
for ( ; i < 4; i++ ) {
expanded[ prefix + cssExpand[ i ] + suffix ] =
parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
}
return expanded;
}
};
if ( !rmargin.test( prefix ) ) {
jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
}
});
jQuery.fn.extend({
css: function( name, value ) {
return access( this, function( elem, name, value ) {
var styles, len,
map = {},
i = 0;
if ( jQuery.isArray( name ) ) {
styles = getStyles( elem );
len = name.length;
for ( ; i < len; i++ ) {
map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
}
return map;
}
return value !== undefined ?
jQuery.style( elem, name, value ) :
jQuery.css( elem, name );
}, name, value, arguments.length > 1 );
},
show: function() {
return showHide( this, true );
},
hide: function() {
return showHide( this );
},
toggle: function( state ) {
if ( typeof state === "boolean" ) {
return state ? this.show() : this.hide();
}
return this.each(function() {
if ( isHidden( this ) ) {
jQuery( this ).show();
} else {
jQuery( this ).hide();
}
});
}
});
function Tween( elem, options, prop, end, easing ) {
return new Tween.prototype.init( elem, options, prop, end, easing );
}
jQuery.Tween = Tween;
Tween.prototype = {
constructor: Tween,
init: function( elem, options, prop, end, easing, unit ) {
this.elem = elem;
this.prop = prop;
this.easing = easing || "swing";
this.options = options;
this.start = this.now = this.cur();
this.end = end;
this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
},
cur: function() {
var hooks = Tween.propHooks[ this.prop ];
return hooks && hooks.get ?
hooks.get( this ) :
Tween.propHooks._default.get( this );
},
run: function( percent ) {
var eased,
hooks = Tween.propHooks[ this.prop ];
if ( this.options.duration ) {
this.pos = eased = jQuery.easing[ this.easing ](
percent, this.options.duration * percent, 0, 1, this.options.duration
);
} else {
this.pos = eased = percent;
}
this.now = ( this.end - this.start ) * eased + this.start;
if ( this.options.step ) {
this.options.step.call( this.elem, this.now, this );
}
if ( hooks && hooks.set ) {
hooks.set( this );
} else {
Tween.propHooks._default.set( this );
}
return this;
}
};
Tween.prototype.init.prototype = Tween.prototype;
Tween.propHooks = {
_default: {
get: function( tween ) {
var result;
if ( tween.elem[ tween.prop ] != null &&
(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
return tween.elem[ tween.prop ];
}
// passing an empty string as a 3rd parameter to .css will automatically
// attempt a parseFloat and fallback to a string if the parse fails
// so, simple values such as "10px" are parsed to Float.
// complex values such as "rotate(1rad)" are returned as is.
result = jQuery.css( tween.elem, tween.prop, "" );
// Empty strings, null, undefined and "auto" are converted to 0.
return !result || result === "auto" ? 0 : result;
},
set: function( tween ) {
// use step hook for back compat - use cssHook if its there - use .style if its
// available and use plain properties where available
if ( jQuery.fx.step[ tween.prop ] ) {
jQuery.fx.step[ tween.prop ]( tween );
} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
} else {
tween.elem[ tween.prop ] = tween.now;
}
}
}
};
// Support: IE <=9
// Panic based approach to setting things on disconnected nodes
Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
set: function( tween ) {
if ( tween.elem.nodeType && tween.elem.parentNode ) {
tween.elem[ tween.prop ] = tween.now;
}
}
};
jQuery.easing = {
linear: function( p ) {
return p;
},
swing: function( p ) {
return 0.5 - Math.cos( p * Math.PI ) / 2;
}
};
jQuery.fx = Tween.prototype.init;
// Back Compat <1.8 extension point
jQuery.fx.step = {};
var
fxNow, timerId,
rfxtypes = /^(?:toggle|show|hide)$/,
rfxnum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ),
rrun = /queueHooks$/,
animationPrefilters = [ defaultPrefilter ],
tweeners = {
"*": [ function( prop, value ) {
var tween = this.createTween( prop, value ),
target = tween.cur(),
parts = rfxnum.exec( value ),
unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
// Starting value computation is required for potential unit mismatches
start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) &&
rfxnum.exec( jQuery.css( tween.elem, prop ) ),
scale = 1,
maxIterations = 20;
if ( start && start[ 3 ] !== unit ) {
// Trust units reported by jQuery.css
unit = unit || start[ 3 ];
// Make sure we update the tween properties later on
parts = parts || [];
// Iteratively approximate from a nonzero starting point
start = +target || 1;
do {
// If previous iteration zeroed out, double until we get *something*
// Use a string for doubling factor so we don't accidentally see scale as unchanged below
scale = scale || ".5";
// Adjust and apply
start = start / scale;
jQuery.style( tween.elem, prop, start + unit );
// Update scale, tolerating zero or NaN from tween.cur()
// And breaking the loop if scale is unchanged or perfect, or if we've just had enough
} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
}
// Update tween properties
if ( parts ) {
start = tween.start = +start || +target || 0;
tween.unit = unit;
// If a +=/-= token was provided, we're doing a relative animation
tween.end = parts[ 1 ] ?
start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :
+parts[ 2 ];
}
return tween;
} ]
};
// Animations created synchronously will run synchronously
function createFxNow() {
setTimeout(function() {
fxNow = undefined;
});
return ( fxNow = jQuery.now() );
}
// Generate parameters to create a standard animation
function genFx( type, includeWidth ) {
var which,
attrs = { height: type },
i = 0;
// if we include width, step value is 1 to do all cssExpand values,
// if we don't include width, step value is 2 to skip over Left and Right
includeWidth = includeWidth ? 1 : 0;
for ( ; i < 4 ; i += 2 - includeWidth ) {
which = cssExpand[ i ];
attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
}
if ( includeWidth ) {
attrs.opacity = attrs.width = type;
}
return attrs;
}
function createTween( value, prop, animation ) {
var tween,
collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
index = 0,
length = collection.length;
for ( ; index < length; index++ ) {
if ( (tween = collection[ index ].call( animation, prop, value )) ) {
// we're done with this property
return tween;
}
}
}
function defaultPrefilter( elem, props, opts ) {
/* jshint validthis: true */
var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,
anim = this,
orig = {},
style = elem.style,
hidden = elem.nodeType && isHidden( elem ),
dataShow = jQuery._data( elem, "fxshow" );
// handle queue: false promises
if ( !opts.queue ) {
hooks = jQuery._queueHooks( elem, "fx" );
if ( hooks.unqueued == null ) {
hooks.unqueued = 0;
oldfire = hooks.empty.fire;
hooks.empty.fire = function() {
if ( !hooks.unqueued ) {
oldfire();
}
};
}
hooks.unqueued++;
anim.always(function() {
// doing this makes sure that the complete handler will be called
// before this completes
anim.always(function() {
hooks.unqueued--;
if ( !jQuery.queue( elem, "fx" ).length ) {
hooks.empty.fire();
}
});
});
}
// height/width overflow pass
if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
// Make sure that nothing sneaks out
// Record all 3 overflow attributes because IE does not
// change the overflow attribute when overflowX and
// overflowY are set to the same value
opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
// Set display property to inline-block for height/width
// animations on inline elements that are having width/height animated
display = jQuery.css( elem, "display" );
// Test default display if display is currently "none"
checkDisplay = display === "none" ?
jQuery._data( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) {
// inline-level elements accept inline-block;
// block-level elements need to be inline with layout
if ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === "inline" ) {
style.display = "inline-block";
} else {
style.zoom = 1;
}
}
}
if ( opts.overflow ) {
style.overflow = "hidden";
if ( !support.shrinkWrapBlocks() ) {
anim.always(function() {
style.overflow = opts.overflow[ 0 ];
style.overflowX = opts.overflow[ 1 ];
style.overflowY = opts.overflow[ 2 ];
});
}
}
// show/hide pass
for ( prop in props ) {
value = props[ prop ];
if ( rfxtypes.exec( value ) ) {
delete props[ prop ];
toggle = toggle || value === "toggle";
if ( value === ( hidden ? "hide" : "show" ) ) {
// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden
if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
hidden = true;
} else {
continue;
}
}
orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
// Any non-fx value stops us from restoring the original display value
} else {
display = undefined;
}
}
if ( !jQuery.isEmptyObject( orig ) ) {
if ( dataShow ) {
if ( "hidden" in dataShow ) {
hidden = dataShow.hidden;
}
} else {
dataShow = jQuery._data( elem, "fxshow", {} );
}
// store state if its toggle - enables .stop().toggle() to "reverse"
if ( toggle ) {
dataShow.hidden = !hidden;
}
if ( hidden ) {
jQuery( elem ).show();
} else {
anim.done(function() {
jQuery( elem ).hide();
});
}
anim.done(function() {
var prop;
jQuery._removeData( elem, "fxshow" );
for ( prop in orig ) {
jQuery.style( elem, prop, orig[ prop ] );
}
});
for ( prop in orig ) {
tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
if ( !( prop in dataShow ) ) {
dataShow[ prop ] = tween.start;
if ( hidden ) {
tween.end = tween.start;
tween.start = prop === "width" || prop === "height" ? 1 : 0;
}
}
}
// If this is a noop like .hide().hide(), restore an overwritten display value
} else if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" ) {
style.display = display;
}
}
function propFilter( props, specialEasing ) {
var index, name, easing, value, hooks;
// camelCase, specialEasing and expand cssHook pass
for ( index in props ) {
name = jQuery.camelCase( index );
easing = specialEasing[ name ];
value = props[ index ];
if ( jQuery.isArray( value ) ) {
easing = value[ 1 ];
value = props[ index ] = value[ 0 ];
}
if ( index !== name ) {
props[ name ] = value;
delete props[ index ];
}
hooks = jQuery.cssHooks[ name ];
if ( hooks && "expand" in hooks ) {
value = hooks.expand( value );
delete props[ name ];
// not quite $.extend, this wont overwrite keys already present.
// also - reusing 'index' from above because we have the correct "name"
for ( index in value ) {
if ( !( index in props ) ) {
props[ index ] = value[ index ];
specialEasing[ index ] = easing;
}
}
} else {
specialEasing[ name ] = easing;
}
}
}
function Animation( elem, properties, options ) {
var result,
stopped,
index = 0,
length = animationPrefilters.length,
deferred = jQuery.Deferred().always( function() {
// don't match elem in the :animated selector
delete tick.elem;
}),
tick = function() {
if ( stopped ) {
return false;
}
var currentTime = fxNow || createFxNow(),
remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
temp = remaining / animation.duration || 0,
percent = 1 - temp,
index = 0,
length = animation.tweens.length;
for ( ; index < length ; index++ ) {
animation.tweens[ index ].run( percent );
}
deferred.notifyWith( elem, [ animation, percent, remaining ]);
if ( percent < 1 && length ) {
return remaining;
} else {
deferred.resolveWith( elem, [ animation ] );
return false;
}
},
animation = deferred.promise({
elem: elem,
props: jQuery.extend( {}, properties ),
opts: jQuery.extend( true, { specialEasing: {} }, options ),
originalProperties: properties,
originalOptions: options,
startTime: fxNow || createFxNow(),
duration: options.duration,
tweens: [],
createTween: function( prop, end ) {
var tween = jQuery.Tween( elem, animation.opts, prop, end,
animation.opts.specialEasing[ prop ] || animation.opts.easing );
animation.tweens.push( tween );
return tween;
},
stop: function( gotoEnd ) {
var index = 0,
// if we are going to the end, we want to run all the tweens
// otherwise we skip this part
length = gotoEnd ? animation.tweens.length : 0;
if ( stopped ) {
return this;
}
stopped = true;
for ( ; index < length ; index++ ) {
animation.tweens[ index ].run( 1 );
}
// resolve when we played the last frame
// otherwise, reject
if ( gotoEnd ) {
deferred.resolveWith( elem, [ animation, gotoEnd ] );
} else {
deferred.rejectWith( elem, [ animation, gotoEnd ] );
}
return this;
}
}),
props = animation.props;
propFilter( props, animation.opts.specialEasing );
for ( ; index < length ; index++ ) {
result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
if ( result ) {
return result;
}
}
jQuery.map( props, createTween, animation );
if ( jQuery.isFunction( animation.opts.start ) ) {
animation.opts.start.call( elem, animation );
}
jQuery.fx.timer(
jQuery.extend( tick, {
elem: elem,
anim: animation,
queue: animation.opts.queue
})
);
// attach callbacks from options
return animation.progress( animation.opts.progress )
.done( animation.opts.done, animation.opts.complete )
.fail( animation.opts.fail )
.always( animation.opts.always );
}
jQuery.Animation = jQuery.extend( Animation, {
tweener: function( props, callback ) {
if ( jQuery.isFunction( props ) ) {
callback = props;
props = [ "*" ];
} else {
props = props.split(" ");
}
var prop,
index = 0,
length = props.length;
for ( ; index < length ; index++ ) {
prop = props[ index ];
tweeners[ prop ] = tweeners[ prop ] || [];
tweeners[ prop ].unshift( callback );
}
},
prefilter: function( callback, prepend ) {
if ( prepend ) {
animationPrefilters.unshift( callback );
} else {
animationPrefilters.push( callback );
}
}
});
jQuery.speed = function( speed, easing, fn ) {
var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
complete: fn || !fn && easing ||
jQuery.isFunction( speed ) && speed,
duration: speed,
easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
};
opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
// normalize opt.queue - true/undefined/null -> "fx"
if ( opt.queue == null || opt.queue === true ) {
opt.queue = "fx";
}
// Queueing
opt.old = opt.complete;
opt.complete = function() {
if ( jQuery.isFunction( opt.old ) ) {
opt.old.call( this );
}
if ( opt.queue ) {
jQuery.dequeue( this, opt.queue );
}
};
return opt;
};
jQuery.fn.extend({
fadeTo: function( speed, to, easing, callback ) {
// show any hidden elements after setting opacity to 0
return this.filter( isHidden ).css( "opacity", 0 ).show()
// animate to the value specified
.end().animate({ opacity: to }, speed, easing, callback );
},
animate: function( prop, speed, easing, callback ) {
var empty = jQuery.isEmptyObject( prop ),
optall = jQuery.speed( speed, easing, callback ),
doAnimation = function() {
// Operate on a copy of prop so per-property easing won't be lost
var anim = Animation( this, jQuery.extend( {}, prop ), optall );
// Empty animations, or finishing resolves immediately
if ( empty || jQuery._data( this, "finish" ) ) {
anim.stop( true );
}
};
doAnimation.finish = doAnimation;
return empty || optall.queue === false ?
this.each( doAnimation ) :
this.queue( optall.queue, doAnimation );
},
stop: function( type, clearQueue, gotoEnd ) {
var stopQueue = function( hooks ) {
var stop = hooks.stop;
delete hooks.stop;
stop( gotoEnd );
};
if ( typeof type !== "string" ) {
gotoEnd = clearQueue;
clearQueue = type;
type = undefined;
}
if ( clearQueue && type !== false ) {
this.queue( type || "fx", [] );
}
return this.each(function() {
var dequeue = true,
index = type != null && type + "queueHooks",
timers = jQuery.timers,
data = jQuery._data( this );
if ( index ) {
if ( data[ index ] && data[ index ].stop ) {
stopQueue( data[ index ] );
}
} else {
for ( index in data ) {
if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
stopQueue( data[ index ] );
}
}
}
for ( index = timers.length; index--; ) {
if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
timers[ index ].anim.stop( gotoEnd );
dequeue = false;
timers.splice( index, 1 );
}
}
// start the next in the queue if the last step wasn't forced
// timers currently will call their complete callbacks, which will dequeue
// but only if they were gotoEnd
if ( dequeue || !gotoEnd ) {
jQuery.dequeue( this, type );
}
});
},
finish: function( type ) {
if ( type !== false ) {
type = type || "fx";
}
return this.each(function() {
var index,
data = jQuery._data( this ),
queue = data[ type + "queue" ],
hooks = data[ type + "queueHooks" ],
timers = jQuery.timers,
length = queue ? queue.length : 0;
// enable finishing flag on private data
data.finish = true;
// empty the queue first
jQuery.queue( this, type, [] );
if ( hooks && hooks.stop ) {
hooks.stop.call( this, true );
}
// look for any active animations, and finish them
for ( index = timers.length; index--; ) {
if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
timers[ index ].anim.stop( true );
timers.splice( index, 1 );
}
}
// look for any animations in the old queue and finish them
for ( index = 0; index < length; index++ ) {
if ( queue[ index ] && queue[ index ].finish ) {
queue[ index ].finish.call( this );
}
}
// turn off finishing flag
delete data.finish;
});
}
});
jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
var cssFn = jQuery.fn[ name ];
jQuery.fn[ name ] = function( speed, easing, callback ) {
return speed == null || typeof speed === "boolean" ?
cssFn.apply( this, arguments ) :
this.animate( genFx( name, true ), speed, easing, callback );
};
});
// Generate shortcuts for custom animations
jQuery.each({
slideDown: genFx("show"),
slideUp: genFx("hide"),
slideToggle: genFx("toggle"),
fadeIn: { opacity: "show" },
fadeOut: { opacity: "hide" },
fadeToggle: { opacity: "toggle" }
}, function( name, props ) {
jQuery.fn[ name ] = function( speed, easing, callback ) {
return this.animate( props, speed, easing, callback );
};
});
jQuery.timers = [];
jQuery.fx.tick = function() {
var timer,
timers = jQuery.timers,
i = 0;
fxNow = jQuery.now();
for ( ; i < timers.length; i++ ) {
timer = timers[ i ];
// Checks the timer has not already been removed
if ( !timer() && timers[ i ] === timer ) {
timers.splice( i--, 1 );
}
}
if ( !timers.length ) {
jQuery.fx.stop();
}
fxNow = undefined;
};
jQuery.fx.timer = function( timer ) {
jQuery.timers.push( timer );
if ( timer() ) {
jQuery.fx.start();
} else {
jQuery.timers.pop();
}
};
jQuery.fx.interval = 13;
jQuery.fx.start = function() {
if ( !timerId ) {
timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
}
};
jQuery.fx.stop = function() {
clearInterval( timerId );
timerId = null;
};
jQuery.fx.speeds = {
slow: 600,
fast: 200,
// Default speed
_default: 400
};
// Based off of the plugin by Clint Helfers, with permission.
// http://blindsignals.com/index.php/2009/07/jquery-delay/
jQuery.fn.delay = function( time, type ) {
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
type = type || "fx";
return this.queue( type, function( next, hooks ) {
var timeout = setTimeout( next, time );
hooks.stop = function() {
clearTimeout( timeout );
};
});
};
(function() {
// Minified: var a,b,c,d,e
var input, div, select, a, opt;
// Setup
div = document.createElement( "div" );
div.setAttribute( "className", "t" );
div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
a = div.getElementsByTagName("a")[ 0 ];
// First batch of tests.
select = document.createElement("select");
opt = select.appendChild( document.createElement("option") );
input = div.getElementsByTagName("input")[ 0 ];
a.style.cssText = "top:1px";
// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)
support.getSetAttribute = div.className !== "t";
// Get the style information from getAttribute
// (IE uses .cssText instead)
support.style = /top/.test( a.getAttribute("style") );
// Make sure that URLs aren't manipulated
// (IE normalizes it by default)
support.hrefNormalized = a.getAttribute("href") === "/a";
// Check the default checkbox/radio value ("" on WebKit; "on" elsewhere)
support.checkOn = !!input.value;
// Make sure that a selected-by-default option has a working selected property.
// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
support.optSelected = opt.selected;
// Tests for enctype support on a form (#6743)
support.enctype = !!document.createElement("form").enctype;
// Make sure that the options inside disabled selects aren't marked as disabled
// (WebKit marks them as disabled)
select.disabled = true;
support.optDisabled = !opt.disabled;
// Support: IE8 only
// Check if we can trust getAttribute("value")
input = document.createElement( "input" );
input.setAttribute( "value", "" );
support.input = input.getAttribute( "value" ) === "";
// Check if an input maintains its value after becoming a radio
input.value = "t";
input.setAttribute( "type", "radio" );
support.radioValue = input.value === "t";
})();
var rreturn = /\r/g;
jQuery.fn.extend({
val: function( value ) {
var hooks, ret, isFunction,
elem = this[0];
if ( !arguments.length ) {
if ( elem ) {
hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
return ret;
}
ret = elem.value;
return typeof ret === "string" ?
// handle most common string cases
ret.replace(rreturn, "") :
// handle cases where value is null/undef or number
ret == null ? "" : ret;
}
return;
}
isFunction = jQuery.isFunction( value );
return this.each(function( i ) {
var val;
if ( this.nodeType !== 1 ) {
return;
}
if ( isFunction ) {
val = value.call( this, i, jQuery( this ).val() );
} else {
val = value;
}
// Treat null/undefined as ""; convert numbers to string
if ( val == null ) {
val = "";
} else if ( typeof val === "number" ) {
val += "";
} else if ( jQuery.isArray( val ) ) {
val = jQuery.map( val, function( value ) {
return value == null ? "" : value + "";
});
}
hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
// If set returns undefined, fall back to normal setting
if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
this.value = val;
}
});
}
});
jQuery.extend({
valHooks: {
option: {
get: function( elem ) {
var val = jQuery.find.attr( elem, "value" );
return val != null ?
val :
// Support: IE10-11+
// option.text throws exceptions (#14686, #14858)
jQuery.trim( jQuery.text( elem ) );
}
},
select: {
get: function( elem ) {
var value, option,
options = elem.options,
index = elem.selectedIndex,
one = elem.type === "select-one" || index < 0,
values = one ? null : [],
max = one ? index + 1 : options.length,
i = index < 0 ?
max :
one ? index : 0;
// Loop through all the selected options
for ( ; i < max; i++ ) {
option = options[ i ];
// oldIE doesn't update selected after form reset (#2551)
if ( ( option.selected || i === index ) &&
// Don't return options that are disabled or in a disabled optgroup
( support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) &&
( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
// Get the specific value for the option
value = jQuery( option ).val();
// We don't need an array for one selects
if ( one ) {
return value;
}
// Multi-Selects return an array
values.push( value );
}
}
return values;
},
set: function( elem, value ) {
var optionSet, option,
options = elem.options,
values = jQuery.makeArray( value ),
i = options.length;
while ( i-- ) {
option = options[ i ];
if ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {
// Support: IE6
// When new option element is added to select box we need to
// force reflow of newly added node in order to workaround delay
// of initialization properties
try {
option.selected = optionSet = true;
} catch ( _ ) {
// Will be executed only in IE6
option.scrollHeight;
}
} else {
option.selected = false;
}
}
// Force browsers to behave consistently when non-matching value is set
if ( !optionSet ) {
elem.selectedIndex = -1;
}
return options;
}
}
}
});
// Radios and checkboxes getter/setter
jQuery.each([ "radio", "checkbox" ], function() {
jQuery.valHooks[ this ] = {
set: function( elem, value ) {
if ( jQuery.isArray( value ) ) {
return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
}
}
};
if ( !support.checkOn ) {
jQuery.valHooks[ this ].get = function( elem ) {
// Support: Webkit
// "" is returned instead of "on" if a value isn't specified
return elem.getAttribute("value") === null ? "on" : elem.value;
};
}
});
var nodeHook, boolHook,
attrHandle = jQuery.expr.attrHandle,
ruseDefault = /^(?:checked|selected)$/i,
getSetAttribute = support.getSetAttribute,
getSetInput = support.input;
jQuery.fn.extend({
attr: function( name, value ) {
return access( this, jQuery.attr, name, value, arguments.length > 1 );
},
removeAttr: function( name ) {
return this.each(function() {
jQuery.removeAttr( this, name );
});
}
});
jQuery.extend({
attr: function( elem, name, value ) {
var hooks, ret,
nType = elem.nodeType;
// don't get/set attributes on text, comment and attribute nodes
if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
return;
}
// Fallback to prop when attributes are not supported
if ( typeof elem.getAttribute === strundefined ) {
return jQuery.prop( elem, name, value );
}
// All attributes are lowercase
// Grab necessary hook if one is defined
if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
name = name.toLowerCase();
hooks = jQuery.attrHooks[ name ] ||
( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );
}
if ( value !== undefined ) {
if ( value === null ) {
jQuery.removeAttr( elem, name );
} else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
return ret;
} else {
elem.setAttribute( name, value + "" );
return value;
}
} else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
return ret;
} else {
ret = jQuery.find.attr( elem, name );
// Non-existent attributes return null, we normalize to undefined
return ret == null ?
undefined :
ret;
}
},
removeAttr: function( elem, value ) {
var name, propName,
i = 0,
attrNames = value && value.match( rnotwhite );
if ( attrNames && elem.nodeType === 1 ) {
while ( (name = attrNames[i++]) ) {
propName = jQuery.propFix[ name ] || name;
// Boolean attributes get special treatment (#10870)
if ( jQuery.expr.match.bool.test( name ) ) {
// Set corresponding property to false
if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
elem[ propName ] = false;
// Support: IE<9
// Also clear defaultChecked/defaultSelected (if appropriate)
} else {
elem[ jQuery.camelCase( "default-" + name ) ] =
elem[ propName ] = false;
}
// See #9699 for explanation of this approach (setting first, then removal)
} else {
jQuery.attr( elem, name, "" );
}
elem.removeAttribute( getSetAttribute ? name : propName );
}
}
},
attrHooks: {
type: {
set: function( elem, value ) {
if ( !support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) {
// Setting the type on a radio button after the value resets the value in IE6-9
// Reset value to default in case type is set after value during creation
var val = elem.value;
elem.setAttribute( "type", value );
if ( val ) {
elem.value = val;
}
return value;
}
}
}
}
});
// Hook for boolean attributes
boolHook = {
set: function( elem, value, name ) {
if ( value === false ) {
// Remove boolean attributes when set to false
jQuery.removeAttr( elem, name );
} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
// IE<8 needs the *property* name
elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );
// Use defaultChecked and defaultSelected for oldIE
} else {
elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true;
}
return name;
}
};
// Retrieve booleans specially
jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
var getter = attrHandle[ name ] || jQuery.find.attr;
attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?
function( elem, name, isXML ) {
var ret, handle;
if ( !isXML ) {
// Avoid an infinite loop by temporarily removing this function from the getter
handle = attrHandle[ name ];
attrHandle[ name ] = ret;
ret = getter( elem, name, isXML ) != null ?
name.toLowerCase() :
null;
attrHandle[ name ] = handle;
}
return ret;
} :
function( elem, name, isXML ) {
if ( !isXML ) {
return elem[ jQuery.camelCase( "default-" + name ) ] ?
name.toLowerCase() :
null;
}
};
});
// fix oldIE attroperties
if ( !getSetInput || !getSetAttribute ) {
jQuery.attrHooks.value = {
set: function( elem, value, name ) {
if ( jQuery.nodeName( elem, "input" ) ) {
// Does not return so that setAttribute is also used
elem.defaultValue = value;
} else {
// Use nodeHook if defined (#1954); otherwise setAttribute is fine
return nodeHook && nodeHook.set( elem, value, name );
}
}
};
}
// IE6/7 do not support getting/setting some attributes with get/setAttribute
if ( !getSetAttribute ) {
// Use this for any attribute in IE6/7
// This fixes almost every IE6/7 issue
nodeHook = {
set: function( elem, value, name ) {
// Set the existing or create a new attribute node
var ret = elem.getAttributeNode( name );
if ( !ret ) {
elem.setAttributeNode(
(ret = elem.ownerDocument.createAttribute( name ))
);
}
ret.value = value += "";
// Break association with cloned elements by also using setAttribute (#9646)
if ( name === "value" || value === elem.getAttribute( name ) ) {
return value;
}
}
};
// Some attributes are constructed with empty-string values when not defined
attrHandle.id = attrHandle.name = attrHandle.coords =
function( elem, name, isXML ) {
var ret;
if ( !isXML ) {
return (ret = elem.getAttributeNode( name )) && ret.value !== "" ?
ret.value :
null;
}
};
// Fixing value retrieval on a button requires this module
jQuery.valHooks.button = {
get: function( elem, name ) {
var ret = elem.getAttributeNode( name );
if ( ret && ret.specified ) {
return ret.value;
}
},
set: nodeHook.set
};
// Set contenteditable to false on removals(#10429)
// Setting to empty string throws an error as an invalid value
jQuery.attrHooks.contenteditable = {
set: function( elem, value, name ) {
nodeHook.set( elem, value === "" ? false : value, name );
}
};
// Set width and height to auto instead of 0 on empty string( Bug #8150 )
// This is for removals
jQuery.each([ "width", "height" ], function( i, name ) {
jQuery.attrHooks[ name ] = {
set: function( elem, value ) {
if ( value === "" ) {
elem.setAttribute( name, "auto" );
return value;
}
}
};
});
}
if ( !support.style ) {
jQuery.attrHooks.style = {
get: function( elem ) {
// Return undefined in the case of empty string
// Note: IE uppercases css property names, but if we were to .toLowerCase()
// .cssText, that would destroy case senstitivity in URL's, like in "background"
return elem.style.cssText || undefined;
},
set: function( elem, value ) {
return ( elem.style.cssText = value + "" );
}
};
}
var rfocusable = /^(?:input|select|textarea|button|object)$/i,
rclickable = /^(?:a|area)$/i;
jQuery.fn.extend({
prop: function( name, value ) {
return access( this, jQuery.prop, name, value, arguments.length > 1 );
},
removeProp: function( name ) {
name = jQuery.propFix[ name ] || name;
return this.each(function() {
// try/catch handles cases where IE balks (such as removing a property on window)
try {
this[ name ] = undefined;
delete this[ name ];
} catch( e ) {}
});
}
});
jQuery.extend({
propFix: {
"for": "htmlFor",
"class": "className"
},
prop: function( elem, name, value ) {
var ret, hooks, notxml,
nType = elem.nodeType;
// don't get/set properties on text, comment and attribute nodes
if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
return;
}
notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
if ( notxml ) {
// Fix name and attach hooks
name = jQuery.propFix[ name ] || name;
hooks = jQuery.propHooks[ name ];
}
if ( value !== undefined ) {
return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?
ret :
( elem[ name ] = value );
} else {
return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ?
ret :
elem[ name ];
}
},
propHooks: {
tabIndex: {
get: function( elem ) {
// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
// Use proper attribute retrieval(#12072)
var tabindex = jQuery.find.attr( elem, "tabindex" );
return tabindex ?
parseInt( tabindex, 10 ) :
rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
0 :
-1;
}
}
}
});
// Some attributes require a special call on IE
// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
if ( !support.hrefNormalized ) {
// href/src property should get the full normalized URL (#10299/#12915)
jQuery.each([ "href", "src" ], function( i, name ) {
jQuery.propHooks[ name ] = {
get: function( elem ) {
return elem.getAttribute( name, 4 );
}
};
});
}
// Support: Safari, IE9+
// mis-reports the default selected property of an option
// Accessing the parent's selectedIndex property fixes it
if ( !support.optSelected ) {
jQuery.propHooks.selected = {
get: function( elem ) {
var parent = elem.parentNode;
if ( parent ) {
parent.selectedIndex;
// Make sure that it also works with optgroups, see #5701
if ( parent.parentNode ) {
parent.parentNode.selectedIndex;
}
}
return null;
}
};
}
jQuery.each([
"tabIndex",
"readOnly",
"maxLength",
"cellSpacing",
"cellPadding",
"rowSpan",
"colSpan",
"useMap",
"frameBorder",
"contentEditable"
], function() {
jQuery.propFix[ this.toLowerCase() ] = this;
});
// IE6/7 call enctype encoding
if ( !support.enctype ) {
jQuery.propFix.enctype = "encoding";
}
var rclass = /[\t\r\n\f]/g;
jQuery.fn.extend({
addClass: function( value ) {
var classes, elem, cur, clazz, j, finalValue,
i = 0,
len = this.length,
proceed = typeof value === "string" && value;
if ( jQuery.isFunction( value ) ) {
return this.each(function( j ) {
jQuery( this ).addClass( value.call( this, j, this.className ) );
});
}
if ( proceed ) {
// The disjunction here is for better compressibility (see removeClass)
classes = ( value || "" ).match( rnotwhite ) || [];
for ( ; i < len; i++ ) {
elem = this[ i ];
cur = elem.nodeType === 1 && ( elem.className ?
( " " + elem.className + " " ).replace( rclass, " " ) :
" "
);
if ( cur ) {
j = 0;
while ( (clazz = classes[j++]) ) {
if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
cur += clazz + " ";
}
}
// only assign if different to avoid unneeded rendering.
finalValue = jQuery.trim( cur );
if ( elem.className !== finalValue ) {
elem.className = finalValue;
}
}
}
}
return this;
},
removeClass: function( value ) {
var classes, elem, cur, clazz, j, finalValue,
i = 0,
len = this.length,
proceed = arguments.length === 0 || typeof value === "string" && value;
if ( jQuery.isFunction( value ) ) {
return this.each(function( j ) {
jQuery( this ).removeClass( value.call( this, j, this.className ) );
});
}
if ( proceed ) {
classes = ( value || "" ).match( rnotwhite ) || [];
for ( ; i < len; i++ ) {
elem = this[ i ];
// This expression is here for better compressibility (see addClass)
cur = elem.nodeType === 1 && ( elem.className ?
( " " + elem.className + " " ).replace( rclass, " " ) :
""
);
if ( cur ) {
j = 0;
while ( (clazz = classes[j++]) ) {
// Remove *all* instances
while ( cur.indexOf( " " + clazz + " " ) >= 0 ) {
cur = cur.replace( " " + clazz + " ", " " );
}
}
// only assign if different to avoid unneeded rendering.
finalValue = value ? jQuery.trim( cur ) : "";
if ( elem.className !== finalValue ) {
elem.className = finalValue;
}
}
}
}
return this;
},
toggleClass: function( value, stateVal ) {
var type = typeof value;
if ( typeof stateVal === "boolean" && type === "string" ) {
return stateVal ? this.addClass( value ) : this.removeClass( value );
}
if ( jQuery.isFunction( value ) ) {
return this.each(function( i ) {
jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
});
}
return this.each(function() {
if ( type === "string" ) {
// toggle individual class names
var className,
i = 0,
self = jQuery( this ),
classNames = value.match( rnotwhite ) || [];
while ( (className = classNames[ i++ ]) ) {
// check each className given, space separated list
if ( self.hasClass( className ) ) {
self.removeClass( className );
} else {
self.addClass( className );
}
}
// Toggle whole class name
} else if ( type === strundefined || type === "boolean" ) {
if ( this.className ) {
// store className if set
jQuery._data( this, "__className__", this.className );
}
// If the element has a class name or if we're passed "false",
// then remove the whole classname (if there was one, the above saved it).
// Otherwise bring back whatever was previously saved (if anything),
// falling back to the empty string if nothing was stored.
this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || "";
}
});
},
hasClass: function( selector ) {
var className = " " + selector + " ",
i = 0,
l = this.length;
for ( ; i < l; i++ ) {
if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
return true;
}
}
return false;
}
});
// Return jQuery for attributes-only inclusion
jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
"change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {
// Handle event binding
jQuery.fn[ name ] = function( data, fn ) {
return arguments.length > 0 ?
this.on( name, null, data, fn ) :
this.trigger( name );
};
});
jQuery.fn.extend({
hover: function( fnOver, fnOut ) {
return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
},
bind: function( types, data, fn ) {
return this.on( types, null, data, fn );
},
unbind: function( types, fn ) {
return this.off( types, null, fn );
},
delegate: function( selector, types, data, fn ) {
return this.on( types, selector, data, fn );
},
undelegate: function( selector, types, fn ) {
// ( namespace ) or ( selector, types [, fn] )
return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
}
});
var nonce = jQuery.now();
var rquery = (/\?/);
var rvalidtokens = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;
jQuery.parseJSON = function( data ) {
// Attempt to parse using the native JSON parser first
if ( window.JSON && window.JSON.parse ) {
// Support: Android 2.3
// Workaround failure to string-cast null input
return window.JSON.parse( data + "" );
}
var requireNonComma,
depth = null,
str = jQuery.trim( data + "" );
// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains
// after removing valid tokens
return str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {
// Force termination if we see a misplaced comma
if ( requireNonComma && comma ) {
depth = 0;
}
// Perform no more replacements after returning to outermost depth
if ( depth === 0 ) {
return token;
}
// Commas must not follow "[", "{", or ","
requireNonComma = open || comma;
// Determine new depth
// array/object open ("[" or "{"): depth += true - false (increment)
// array/object close ("]" or "}"): depth += false - true (decrement)
// other cases ("," or primitive): depth += true - true (numeric cast)
depth += !close - !open;
// Remove this token
return "";
}) ) ?
( Function( "return " + str ) )() :
jQuery.error( "Invalid JSON: " + data );
};
// Cross-browser xml parsing
jQuery.parseXML = function( data ) {
var xml, tmp;
if ( !data || typeof data !== "string" ) {
return null;
}
try {
if ( window.DOMParser ) { // Standard
tmp = new DOMParser();
xml = tmp.parseFromString( data, "text/xml" );
} else { // IE
xml = new ActiveXObject( "Microsoft.XMLDOM" );
xml.async = "false";
xml.loadXML( data );
}
} catch( e ) {
xml = undefined;
}
if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) {
jQuery.error( "Invalid XML: " + data );
}
return xml;
};
var
// Document location
ajaxLocParts,
ajaxLocation,
rhash = /#.*$/,
rts = /([?&])_=[^&]*/,
rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL
// #7653, #8125, #8152: local protocol detection
rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
rnoContent = /^(?:GET|HEAD)$/,
rprotocol = /^\/\//,
rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
/* Prefilters
* 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
* 2) These are called:
* - BEFORE asking for a transport
* - AFTER param serialization (s.data is a string if s.processData is true)
* 3) key is the dataType
* 4) the catchall symbol "*" can be used
* 5) execution will start with transport dataType and THEN continue down to "*" if needed
*/
prefilters = {},
/* Transports bindings
* 1) key is the dataType
* 2) the catchall symbol "*" can be used
* 3) selection will start with transport dataType and THEN go to "*" if needed
*/
transports = {},
// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
allTypes = "*/".concat("*");
// #8138, IE may throw an exception when accessing
// a field from window.location if document.domain has been set
try {
ajaxLocation = location.href;
} catch( e ) {
// Use the href attribute of an A element
// since IE will modify it given document.location
ajaxLocation = document.createElement( "a" );
ajaxLocation.href = "";
ajaxLocation = ajaxLocation.href;
}
// Segment location into parts
ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
function addToPrefiltersOrTransports( structure ) {
// dataTypeExpression is optional and defaults to "*"
return function( dataTypeExpression, func ) {
if ( typeof dataTypeExpression !== "string" ) {
func = dataTypeExpression;
dataTypeExpression = "*";
}
var dataType,
i = 0,
dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
if ( jQuery.isFunction( func ) ) {
// For each dataType in the dataTypeExpression
while ( (dataType = dataTypes[i++]) ) {
// Prepend if requested
if ( dataType.charAt( 0 ) === "+" ) {
dataType = dataType.slice( 1 ) || "*";
(structure[ dataType ] = structure[ dataType ] || []).unshift( func );
// Otherwise append
} else {
(structure[ dataType ] = structure[ dataType ] || []).push( func );
}
}
}
};
}
// Base inspection function for prefilters and transports
function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
var inspected = {},
seekingTransport = ( structure === transports );
function inspect( dataType ) {
var selected;
inspected[ dataType ] = true;
jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
options.dataTypes.unshift( dataTypeOrTransport );
inspect( dataTypeOrTransport );
return false;
} else if ( seekingTransport ) {
return !( selected = dataTypeOrTransport );
}
});
return selected;
}
return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
}
// A special extend for ajax options
// that takes "flat" options (not to be deep extended)
// Fixes #9887
function ajaxExtend( target, src ) {
var deep, key,
flatOptions = jQuery.ajaxSettings.flatOptions || {};
for ( key in src ) {
if ( src[ key ] !== undefined ) {
( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
}
}
if ( deep ) {
jQuery.extend( true, target, deep );
}
return target;
}
/* Handles responses to an ajax request:
* - finds the right dataType (mediates between content-type and expected dataType)
* - returns the corresponding response
*/
function ajaxHandleResponses( s, jqXHR, responses ) {
var firstDataType, ct, finalDataType, type,
contents = s.contents,
dataTypes = s.dataTypes;
// Remove auto dataType and get content-type in the process
while ( dataTypes[ 0 ] === "*" ) {
dataTypes.shift();
if ( ct === undefined ) {
ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
}
}
// Check if we're dealing with a known content-type
if ( ct ) {
for ( type in contents ) {
if ( contents[ type ] && contents[ type ].test( ct ) ) {
dataTypes.unshift( type );
break;
}
}
}
// Check to see if we have a response for the expected dataType
if ( dataTypes[ 0 ] in responses ) {
finalDataType = dataTypes[ 0 ];
} else {
// Try convertible dataTypes
for ( type in responses ) {
if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
finalDataType = type;
break;
}
if ( !firstDataType ) {
firstDataType = type;
}
}
// Or just use first one
finalDataType = finalDataType || firstDataType;
}
// If we found a dataType
// We add the dataType to the list if needed
// and return the corresponding response
if ( finalDataType ) {
if ( finalDataType !== dataTypes[ 0 ] ) {
dataTypes.unshift( finalDataType );
}
return responses[ finalDataType ];
}
}
/* Chain conversions given the request and the original response
* Also sets the responseXXX fields on the jqXHR instance
*/
function ajaxConvert( s, response, jqXHR, isSuccess ) {
var conv2, current, conv, tmp, prev,
converters = {},
// Work with a copy of dataTypes in case we need to modify it for conversion
dataTypes = s.dataTypes.slice();
// Create converters map with lowercased keys
if ( dataTypes[ 1 ] ) {
for ( conv in s.converters ) {
converters[ conv.toLowerCase() ] = s.converters[ conv ];
}
}
current = dataTypes.shift();
// Convert to each sequential dataType
while ( current ) {
if ( s.responseFields[ current ] ) {
jqXHR[ s.responseFields[ current ] ] = response;
}
// Apply the dataFilter if provided
if ( !prev && isSuccess && s.dataFilter ) {
response = s.dataFilter( response, s.dataType );
}
prev = current;
current = dataTypes.shift();
if ( current ) {
// There's only work to do if current dataType is non-auto
if ( current === "*" ) {
current = prev;
// Convert response if prev dataType is non-auto and differs from current
} else if ( prev !== "*" && prev !== current ) {
// Seek a direct converter
conv = converters[ prev + " " + current ] || converters[ "* " + current ];
// If none found, seek a pair
if ( !conv ) {
for ( conv2 in converters ) {
// If conv2 outputs current
tmp = conv2.split( " " );
if ( tmp[ 1 ] === current ) {
// If prev can be converted to accepted input
conv = converters[ prev + " " + tmp[ 0 ] ] ||
converters[ "* " + tmp[ 0 ] ];
if ( conv ) {
// Condense equivalence converters
if ( conv === true ) {
conv = converters[ conv2 ];
// Otherwise, insert the intermediate dataType
} else if ( converters[ conv2 ] !== true ) {
current = tmp[ 0 ];
dataTypes.unshift( tmp[ 1 ] );
}
break;
}
}
}
}
// Apply converter (if not an equivalence)
if ( conv !== true ) {
// Unless errors are allowed to bubble, catch and return them
if ( conv && s[ "throws" ] ) {
response = conv( response );
} else {
try {
response = conv( response );
} catch ( e ) {
return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
}
}
}
}
}
}
return { state: "success", data: response };
}
jQuery.extend({
// Counter for holding the number of active queries
active: 0,
// Last-Modified header cache for next request
lastModified: {},
etag: {},
ajaxSettings: {
url: ajaxLocation,
type: "GET",
isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
global: true,
processData: true,
async: true,
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
/*
timeout: 0,
data: null,
dataType: null,
username: null,
password: null,
cache: null,
throws: false,
traditional: false,
headers: {},
*/
accepts: {
"*": allTypes,
text: "text/plain",
html: "text/html",
xml: "application/xml, text/xml",
json: "application/json, text/javascript"
},
contents: {
xml: /xml/,
html: /html/,
json: /json/
},
responseFields: {
xml: "responseXML",
text: "responseText",
json: "responseJSON"
},
// Data converters
// Keys separate source (or catchall "*") and destination types with a single space
converters: {
// Convert anything to text
"* text": String,
// Text to html (true = no transformation)
"text html": true,
// Evaluate text as a json expression
"text json": jQuery.parseJSON,
// Parse text as xml
"text xml": jQuery.parseXML
},
// For options that shouldn't be deep extended:
// you can add your own custom options here if
// and when you create one that shouldn't be
// deep extended (see ajaxExtend)
flatOptions: {
url: true,
context: true
}
},
// Creates a full fledged settings object into target
// with both ajaxSettings and settings fields.
// If target is omitted, writes into ajaxSettings.
ajaxSetup: function( target, settings ) {
return settings ?
// Building a settings object
ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
// Extending ajaxSettings
ajaxExtend( jQuery.ajaxSettings, target );
},
ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
ajaxTransport: addToPrefiltersOrTransports( transports ),
// Main method
ajax: function( url, options ) {
// If url is an object, simulate pre-1.5 signature
if ( typeof url === "object" ) {
options = url;
url = undefined;
}
// Force options to be an object
options = options || {};
var // Cross-domain detection vars
parts,
// Loop variable
i,
// URL without anti-cache param
cacheURL,
// Response headers as string
responseHeadersString,
// timeout handle
timeoutTimer,
// To know if global events are to be dispatched
fireGlobals,
transport,
// Response headers
responseHeaders,
// Create the final options object
s = jQuery.ajaxSetup( {}, options ),
// Callbacks context
callbackContext = s.context || s,
// Context for global events is callbackContext if it is a DOM node or jQuery collection
globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?
jQuery( callbackContext ) :
jQuery.event,
// Deferreds
deferred = jQuery.Deferred(),
completeDeferred = jQuery.Callbacks("once memory"),
// Status-dependent callbacks
statusCode = s.statusCode || {},
// Headers (they are sent all at once)
requestHeaders = {},
requestHeadersNames = {},
// The jqXHR state
state = 0,
// Default abort message
strAbort = "canceled",
// Fake xhr
jqXHR = {
readyState: 0,
// Builds headers hashtable if needed
getResponseHeader: function( key ) {
var match;
if ( state === 2 ) {
if ( !responseHeaders ) {
responseHeaders = {};
while ( (match = rheaders.exec( responseHeadersString )) ) {
responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
}
}
match = responseHeaders[ key.toLowerCase() ];
}
return match == null ? null : match;
},
// Raw string
getAllResponseHeaders: function() {
return state === 2 ? responseHeadersString : null;
},
// Caches the header
setRequestHeader: function( name, value ) {
var lname = name.toLowerCase();
if ( !state ) {
name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
requestHeaders[ name ] = value;
}
return this;
},
// Overrides response content-type header
overrideMimeType: function( type ) {
if ( !state ) {
s.mimeType = type;
}
return this;
},
// Status-dependent callbacks
statusCode: function( map ) {
var code;
if ( map ) {
if ( state < 2 ) {
for ( code in map ) {
// Lazy-add the new callback in a way that preserves old ones
statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
}
} else {
// Execute the appropriate callbacks
jqXHR.always( map[ jqXHR.status ] );
}
}
return this;
},
// Cancel the request
abort: function( statusText ) {
var finalText = statusText || strAbort;
if ( transport ) {
transport.abort( finalText );
}
done( 0, finalText );
return this;
}
};
// Attach deferreds
deferred.promise( jqXHR ).complete = completeDeferred.add;
jqXHR.success = jqXHR.done;
jqXHR.error = jqXHR.fail;
// Remove hash character (#7531: and string promotion)
// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)
// Handle falsy url in the settings object (#10093: consistency with old signature)
// We also use the url parameter if available
s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
// Alias method option to type as per ticket #12004
s.type = options.method || options.type || s.method || s.type;
// Extract dataTypes list
s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
// A cross-domain request is in order when we have a protocol:host:port mismatch
if ( s.crossDomain == null ) {
parts = rurl.exec( s.url.toLowerCase() );
s.crossDomain = !!( parts &&
( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !==
( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) )
);
}
// Convert data if not already a string
if ( s.data && s.processData && typeof s.data !== "string" ) {
s.data = jQuery.param( s.data, s.traditional );
}
// Apply prefilters
inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
// If request was aborted inside a prefilter, stop there
if ( state === 2 ) {
return jqXHR;
}
// We can fire global events as of now if asked to
fireGlobals = s.global;
// Watch for a new set of requests
if ( fireGlobals && jQuery.active++ === 0 ) {
jQuery.event.trigger("ajaxStart");
}
// Uppercase the type
s.type = s.type.toUpperCase();
// Determine if request has content
s.hasContent = !rnoContent.test( s.type );
// Save the URL in case we're toying with the If-Modified-Since
// and/or If-None-Match header later on
cacheURL = s.url;
// More options handling for requests with no content
if ( !s.hasContent ) {
// If data is available, append data to url
if ( s.data ) {
cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
// #9682: remove data so that it's not used in an eventual retry
delete s.data;
}
// Add anti-cache in url if needed
if ( s.cache === false ) {
s.url = rts.test( cacheURL ) ?
// If there is already a '_' parameter, set its value
cacheURL.replace( rts, "$1_=" + nonce++ ) :
// Otherwise add one to the end
cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
}
}
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
if ( s.ifModified ) {
if ( jQuery.lastModified[ cacheURL ] ) {
jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
}
if ( jQuery.etag[ cacheURL ] ) {
jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
}
}
// Set the correct header, if data is being sent
if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
jqXHR.setRequestHeader( "Content-Type", s.contentType );
}
// Set the Accepts header for the server, depending on the dataType
jqXHR.setRequestHeader(
"Accept",
s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
s.accepts[ "*" ]
);
// Check for headers option
for ( i in s.headers ) {
jqXHR.setRequestHeader( i, s.headers[ i ] );
}
// Allow custom headers/mimetypes and early abort
if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
// Abort if not done already and return
return jqXHR.abort();
}
// aborting is no longer a cancellation
strAbort = "abort";
// Install callbacks on deferreds
for ( i in { success: 1, error: 1, complete: 1 } ) {
jqXHR[ i ]( s[ i ] );
}
// Get transport
transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
// If no transport, we auto-abort
if ( !transport ) {
done( -1, "No Transport" );
} else {
jqXHR.readyState = 1;
// Send global event
if ( fireGlobals ) {
globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
}
// Timeout
if ( s.async && s.timeout > 0 ) {
timeoutTimer = setTimeout(function() {
jqXHR.abort("timeout");
}, s.timeout );
}
try {
state = 1;
transport.send( requestHeaders, done );
} catch ( e ) {
// Propagate exception as error if not done
if ( state < 2 ) {
done( -1, e );
// Simply rethrow otherwise
} else {
throw e;
}
}
}
// Callback for when everything is done
function done( status, nativeStatusText, responses, headers ) {
var isSuccess, success, error, response, modified,
statusText = nativeStatusText;
// Called once
if ( state === 2 ) {
return;
}
// State is "done" now
state = 2;
// Clear timeout if it exists
if ( timeoutTimer ) {
clearTimeout( timeoutTimer );
}
// Dereference transport for early garbage collection
// (no matter how long the jqXHR object will be used)
transport = undefined;
// Cache response headers
responseHeadersString = headers || "";
// Set readyState
jqXHR.readyState = status > 0 ? 4 : 0;
// Determine if successful
isSuccess = status >= 200 && status < 300 || status === 304;
// Get response data
if ( responses ) {
response = ajaxHandleResponses( s, jqXHR, responses );
}
// Convert no matter what (that way responseXXX fields are always set)
response = ajaxConvert( s, response, jqXHR, isSuccess );
// If successful, handle type chaining
if ( isSuccess ) {
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
if ( s.ifModified ) {
modified = jqXHR.getResponseHeader("Last-Modified");
if ( modified ) {
jQuery.lastModified[ cacheURL ] = modified;
}
modified = jqXHR.getResponseHeader("etag");
if ( modified ) {
jQuery.etag[ cacheURL ] = modified;
}
}
// if no content
if ( status === 204 || s.type === "HEAD" ) {
statusText = "nocontent";
// if not modified
} else if ( status === 304 ) {
statusText = "notmodified";
// If we have data, let's convert it
} else {
statusText = response.state;
success = response.data;
error = response.error;
isSuccess = !error;
}
} else {
// We extract error from statusText
// then normalize statusText and status for non-aborts
error = statusText;
if ( status || !statusText ) {
statusText = "error";
if ( status < 0 ) {
status = 0;
}
}
}
// Set data for the fake xhr object
jqXHR.status = status;
jqXHR.statusText = ( nativeStatusText || statusText ) + "";
// Success/Error
if ( isSuccess ) {
deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
} else {
deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
}
// Status-dependent callbacks
jqXHR.statusCode( statusCode );
statusCode = undefined;
if ( fireGlobals ) {
globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
[ jqXHR, s, isSuccess ? success : error ] );
}
// Complete
completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
if ( fireGlobals ) {
globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
// Handle the global AJAX counter
if ( !( --jQuery.active ) ) {
jQuery.event.trigger("ajaxStop");
}
}
}
return jqXHR;
},
getJSON: function( url, data, callback ) {
return jQuery.get( url, data, callback, "json" );
},
getScript: function( url, callback ) {
return jQuery.get( url, undefined, callback, "script" );
}
});
jQuery.each( [ "get", "post" ], function( i, method ) {
jQuery[ method ] = function( url, data, callback, type ) {
// shift arguments if data argument was omitted
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = undefined;
}
return jQuery.ajax({
url: url,
type: method,
dataType: type,
data: data,
success: callback
});
};
});
// Attach a bunch of functions for handling common AJAX events
jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
jQuery.fn[ type ] = function( fn ) {
return this.on( type, fn );
};
});
jQuery._evalUrl = function( url ) {
return jQuery.ajax({
url: url,
type: "GET",
dataType: "script",
async: false,
global: false,
"throws": true
});
};
jQuery.fn.extend({
wrapAll: function( html ) {
if ( jQuery.isFunction( html ) ) {
return this.each(function(i) {
jQuery(this).wrapAll( html.call(this, i) );
});
}
if ( this[0] ) {
// The elements to wrap the target around
var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);
if ( this[0].parentNode ) {
wrap.insertBefore( this[0] );
}
wrap.map(function() {
var elem = this;
while ( elem.firstChild && elem.firstChild.nodeType === 1 ) {
elem = elem.firstChild;
}
return elem;
}).append( this );
}
return this;
},
wrapInner: function( html ) {
if ( jQuery.isFunction( html ) ) {
return this.each(function(i) {
jQuery(this).wrapInner( html.call(this, i) );
});
}
return this.each(function() {
var self = jQuery( this ),
contents = self.contents();
if ( contents.length ) {
contents.wrapAll( html );
} else {
self.append( html );
}
});
},
wrap: function( html ) {
var isFunction = jQuery.isFunction( html );
return this.each(function(i) {
jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
});
},
unwrap: function() {
return this.parent().each(function() {
if ( !jQuery.nodeName( this, "body" ) ) {
jQuery( this ).replaceWith( this.childNodes );
}
}).end();
}
});
jQuery.expr.filters.hidden = function( elem ) {
// Support: Opera <= 12.12
// Opera reports offsetWidths and offsetHeights less than zero on some elements
return elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||
(!support.reliableHiddenOffsets() &&
((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none");
};
jQuery.expr.filters.visible = function( elem ) {
return !jQuery.expr.filters.hidden( elem );
};
var r20 = /%20/g,
rbracket = /\[\]$/,
rCRLF = /\r?\n/g,
rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
rsubmittable = /^(?:input|select|textarea|keygen)/i;
function buildParams( prefix, obj, traditional, add ) {
var name;
if ( jQuery.isArray( obj ) ) {
// Serialize array item.
jQuery.each( obj, function( i, v ) {
if ( traditional || rbracket.test( prefix ) ) {
// Treat each array item as a scalar.
add( prefix, v );
} else {
// Item is non-scalar (array or object), encode its numeric index.
buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
}
});
} else if ( !traditional && jQuery.type( obj ) === "object" ) {
// Serialize object item.
for ( name in obj ) {
buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
}
} else {
// Serialize scalar item.
add( prefix, obj );
}
}
// Serialize an array of form elements or a set of
// key/values into a query string
jQuery.param = function( a, traditional ) {
var prefix,
s = [],
add = function( key, value ) {
// If value is a function, invoke it and return its value
value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
};
// Set traditional to true for jQuery <= 1.3.2 behavior.
if ( traditional === undefined ) {
traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
}
// If an array was passed in, assume that it is an array of form elements.
if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
// Serialize the form elements
jQuery.each( a, function() {
add( this.name, this.value );
});
} else {
// If traditional, encode the "old" way (the way 1.3.2 or older
// did it), otherwise encode params recursively.
for ( prefix in a ) {
buildParams( prefix, a[ prefix ], traditional, add );
}
}
// Return the resulting serialization
return s.join( "&" ).replace( r20, "+" );
};
jQuery.fn.extend({
serialize: function() {
return jQuery.param( this.serializeArray() );
},
serializeArray: function() {
return this.map(function() {
// Can add propHook for "elements" to filter or add form elements
var elements = jQuery.prop( this, "elements" );
return elements ? jQuery.makeArray( elements ) : this;
})
.filter(function() {
var type = this.type;
// Use .is(":disabled") so that fieldset[disabled] works
return this.name && !jQuery( this ).is( ":disabled" ) &&
rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
( this.checked || !rcheckableType.test( type ) );
})
.map(function( i, elem ) {
var val = jQuery( this ).val();
return val == null ?
null :
jQuery.isArray( val ) ?
jQuery.map( val, function( val ) {
return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
}) :
{ name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
}).get();
}
});
// Create the request object
// (This is still attached to ajaxSettings for backward compatibility)
jQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?
// Support: IE6+
function() {
// XHR cannot access local files, always use ActiveX for that case
return !this.isLocal &&
// Support: IE7-8
// oldIE XHR does not support non-RFC2616 methods (#13240)
// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx
// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9
// Although this check for six methods instead of eight
// since IE also does not support "trace" and "connect"
/^(get|post|head|put|delete|options)$/i.test( this.type ) &&
createStandardXHR() || createActiveXHR();
} :
// For all other browsers, use the standard XMLHttpRequest object
createStandardXHR;
var xhrId = 0,
xhrCallbacks = {},
xhrSupported = jQuery.ajaxSettings.xhr();
// Support: IE<10
// Open requests must be manually aborted on unload (#5280)
if ( window.ActiveXObject ) {
jQuery( window ).on( "unload", function() {
for ( var key in xhrCallbacks ) {
xhrCallbacks[ key ]( undefined, true );
}
});
}
// Determine support properties
support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
xhrSupported = support.ajax = !!xhrSupported;
// Create transport if the browser can provide an xhr
if ( xhrSupported ) {
jQuery.ajaxTransport(function( options ) {
// Cross domain only allowed if supported through XMLHttpRequest
if ( !options.crossDomain || support.cors ) {
var callback;
return {
send: function( headers, complete ) {
var i,
xhr = options.xhr(),
id = ++xhrId;
// Open the socket
xhr.open( options.type, options.url, options.async, options.username, options.password );
// Apply custom fields if provided
if ( options.xhrFields ) {
for ( i in options.xhrFields ) {
xhr[ i ] = options.xhrFields[ i ];
}
}
// Override mime type if needed
if ( options.mimeType && xhr.overrideMimeType ) {
xhr.overrideMimeType( options.mimeType );
}
// X-Requested-With header
// For cross-domain requests, seeing as conditions for a preflight are
// akin to a jigsaw puzzle, we simply never set it to be sure.
// (it can always be set on a per-request basis or even using ajaxSetup)
// For same-domain requests, won't change header if already provided.
if ( !options.crossDomain && !headers["X-Requested-With"] ) {
headers["X-Requested-With"] = "XMLHttpRequest";
}
// Set headers
for ( i in headers ) {
// Support: IE<9
// IE's ActiveXObject throws a 'Type Mismatch' exception when setting
// request header to a null-value.
//
// To keep consistent with other XHR implementations, cast the value
// to string and ignore `undefined`.
if ( headers[ i ] !== undefined ) {
xhr.setRequestHeader( i, headers[ i ] + "" );
}
}
// Do send the request
// This may raise an exception which is actually
// handled in jQuery.ajax (so no try/catch here)
xhr.send( ( options.hasContent && options.data ) || null );
// Listener
callback = function( _, isAbort ) {
var status, statusText, responses;
// Was never called and is aborted or complete
if ( callback && ( isAbort || xhr.readyState === 4 ) ) {
// Clean up
delete xhrCallbacks[ id ];
callback = undefined;
xhr.onreadystatechange = jQuery.noop;
// Abort manually if needed
if ( isAbort ) {
if ( xhr.readyState !== 4 ) {
xhr.abort();
}
} else {
responses = {};
status = xhr.status;
// Support: IE<10
// Accessing binary-data responseText throws an exception
// (#11426)
if ( typeof xhr.responseText === "string" ) {
responses.text = xhr.responseText;
}
// Firefox throws an exception when accessing
// statusText for faulty cross-domain requests
try {
statusText = xhr.statusText;
} catch( e ) {
// We normalize with Webkit giving an empty statusText
statusText = "";
}
// Filter status for non standard behaviors
// If the request is local and we have data: assume a success
// (success with no data won't get notified, that's the best we
// can do given current implementations)
if ( !status && options.isLocal && !options.crossDomain ) {
status = responses.text ? 200 : 404;
// IE - #1450: sometimes returns 1223 when it should be 204
} else if ( status === 1223 ) {
status = 204;
}
}
}
// Call complete if needed
if ( responses ) {
complete( status, statusText, responses, xhr.getAllResponseHeaders() );
}
};
if ( !options.async ) {
// if we're in sync mode we fire the callback
callback();
} else if ( xhr.readyState === 4 ) {
// (IE6 & IE7) if it's in cache and has been
// retrieved directly we need to fire the callback
setTimeout( callback );
} else {
// Add to the list of active xhr callbacks
xhr.onreadystatechange = xhrCallbacks[ id ] = callback;
}
},
abort: function() {
if ( callback ) {
callback( undefined, true );
}
}
};
}
});
}
// Functions to create xhrs
function createStandardXHR() {
try {
return new window.XMLHttpRequest();
} catch( e ) {}
}
function createActiveXHR() {
try {
return new window.ActiveXObject( "Microsoft.XMLHTTP" );
} catch( e ) {}
}
// Install script dataType
jQuery.ajaxSetup({
accepts: {
script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
},
contents: {
script: /(?:java|ecma)script/
},
converters: {
"text script": function( text ) {
jQuery.globalEval( text );
return text;
}
}
});
// Handle cache's special case and global
jQuery.ajaxPrefilter( "script", function( s ) {
if ( s.cache === undefined ) {
s.cache = false;
}
if ( s.crossDomain ) {
s.type = "GET";
s.global = false;
}
});
// Bind script tag hack transport
jQuery.ajaxTransport( "script", function(s) {
// This transport only deals with cross domain requests
if ( s.crossDomain ) {
var script,
head = document.head || jQuery("head")[0] || document.documentElement;
return {
send: function( _, callback ) {
script = document.createElement("script");
script.async = true;
if ( s.scriptCharset ) {
script.charset = s.scriptCharset;
}
script.src = s.url;
// Attach handlers for all browsers
script.onload = script.onreadystatechange = function( _, isAbort ) {
if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {
// Handle memory leak in IE
script.onload = script.onreadystatechange = null;
// Remove the script
if ( script.parentNode ) {
script.parentNode.removeChild( script );
}
// Dereference the script
script = null;
// Callback if not abort
if ( !isAbort ) {
callback( 200, "success" );
}
}
};
// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending
// Use native DOM manipulation to avoid our domManip AJAX trickery
head.insertBefore( script, head.firstChild );
},
abort: function() {
if ( script ) {
script.onload( undefined, true );
}
}
};
}
});
var oldCallbacks = [],
rjsonp = /(=)\?(?=&|$)|\?\?/;
// Default jsonp settings
jQuery.ajaxSetup({
jsonp: "callback",
jsonpCallback: function() {
var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
this[ callback ] = true;
return callback;
}
});
// Detect, normalize options and install callbacks for jsonp requests
jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
var callbackName, overwritten, responseContainer,
jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
"url" :
typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data"
);
// Handle iff the expected data type is "jsonp" or we have a parameter to set
if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
// Get callback name, remembering preexisting value associated with it
callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
s.jsonpCallback() :
s.jsonpCallback;
// Insert callback into url or form data
if ( jsonProp ) {
s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
} else if ( s.jsonp !== false ) {
s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
}
// Use data converter to retrieve json after script execution
s.converters["script json"] = function() {
if ( !responseContainer ) {
jQuery.error( callbackName + " was not called" );
}
return responseContainer[ 0 ];
};
// force json dataType
s.dataTypes[ 0 ] = "json";
// Install callback
overwritten = window[ callbackName ];
window[ callbackName ] = function() {
responseContainer = arguments;
};
// Clean-up function (fires after converters)
jqXHR.always(function() {
// Restore preexisting value
window[ callbackName ] = overwritten;
// Save back as free
if ( s[ callbackName ] ) {
// make sure that re-using the options doesn't screw things around
s.jsonpCallback = originalSettings.jsonpCallback;
// save the callback name for future use
oldCallbacks.push( callbackName );
}
// Call if it was a function and we have a response
if ( responseContainer && jQuery.isFunction( overwritten ) ) {
overwritten( responseContainer[ 0 ] );
}
responseContainer = overwritten = undefined;
});
// Delegate to script
return "script";
}
});
// data: string of html
// context (optional): If specified, the fragment will be created in this context, defaults to document
// keepScripts (optional): If true, will include scripts passed in the html string
jQuery.parseHTML = function( data, context, keepScripts ) {
if ( !data || typeof data !== "string" ) {
return null;
}
if ( typeof context === "boolean" ) {
keepScripts = context;
context = false;
}
context = context || document;
var parsed = rsingleTag.exec( data ),
scripts = !keepScripts && [];
// Single tag
if ( parsed ) {
return [ context.createElement( parsed[1] ) ];
}
parsed = jQuery.buildFragment( [ data ], context, scripts );
if ( scripts && scripts.length ) {
jQuery( scripts ).remove();
}
return jQuery.merge( [], parsed.childNodes );
};
// Keep a copy of the old load method
var _load = jQuery.fn.load;
/**
* Load a url into a page
*/
jQuery.fn.load = function( url, params, callback ) {
if ( typeof url !== "string" && _load ) {
return _load.apply( this, arguments );
}
var selector, response, type,
self = this,
off = url.indexOf(" ");
if ( off >= 0 ) {
selector = jQuery.trim( url.slice( off, url.length ) );
url = url.slice( 0, off );
}
// If it's a function
if ( jQuery.isFunction( params ) ) {
// We assume that it's the callback
callback = params;
params = undefined;
// Otherwise, build a param string
} else if ( params && typeof params === "object" ) {
type = "POST";
}
// If we have elements to modify, make the request
if ( self.length > 0 ) {
jQuery.ajax({
url: url,
// if "type" variable is undefined, then "GET" method will be used
type: type,
dataType: "html",
data: params
}).done(function( responseText ) {
// Save response for use in complete callback
response = arguments;
self.html( selector ?
// If a selector was specified, locate the right elements in a dummy div
// Exclude scripts to avoid IE 'Permission Denied' errors
jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) :
// Otherwise use the full result
responseText );
}).complete( callback && function( jqXHR, status ) {
self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
});
}
return this;
};
jQuery.expr.filters.animated = function( elem ) {
return jQuery.grep(jQuery.timers, function( fn ) {
return elem === fn.elem;
}).length;
};
var docElem = window.document.documentElement;
/**
* Gets a window from an element
*/
function getWindow( elem ) {
return jQuery.isWindow( elem ) ?
elem :
elem.nodeType === 9 ?
elem.defaultView || elem.parentWindow :
false;
}
jQuery.offset = {
setOffset: function( elem, options, i ) {
var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
position = jQuery.css( elem, "position" ),
curElem = jQuery( elem ),
props = {};
// set position first, in-case top/left are set even on static elem
if ( position === "static" ) {
elem.style.position = "relative";
}
curOffset = curElem.offset();
curCSSTop = jQuery.css( elem, "top" );
curCSSLeft = jQuery.css( elem, "left" );
calculatePosition = ( position === "absolute" || position === "fixed" ) &&
jQuery.inArray("auto", [ curCSSTop, curCSSLeft ] ) > -1;
// need to be able to calculate position if either top or left is auto and position is either absolute or fixed
if ( calculatePosition ) {
curPosition = curElem.position();
curTop = curPosition.top;
curLeft = curPosition.left;
} else {
curTop = parseFloat( curCSSTop ) || 0;
curLeft = parseFloat( curCSSLeft ) || 0;
}
if ( jQuery.isFunction( options ) ) {
options = options.call( elem, i, curOffset );
}
if ( options.top != null ) {
props.top = ( options.top - curOffset.top ) + curTop;
}
if ( options.left != null ) {
props.left = ( options.left - curOffset.left ) + curLeft;
}
if ( "using" in options ) {
options.using.call( elem, props );
} else {
curElem.css( props );
}
}
};
jQuery.fn.extend({
offset: function( options ) {
if ( arguments.length ) {
return options === undefined ?
this :
this.each(function( i ) {
jQuery.offset.setOffset( this, options, i );
});
}
var docElem, win,
box = { top: 0, left: 0 },
elem = this[ 0 ],
doc = elem && elem.ownerDocument;
if ( !doc ) {
return;
}
docElem = doc.documentElement;
// Make sure it's not a disconnected DOM node
if ( !jQuery.contains( docElem, elem ) ) {
return box;
}
// If we don't have gBCR, just use 0,0 rather than error
// BlackBerry 5, iOS 3 (original iPhone)
if ( typeof elem.getBoundingClientRect !== strundefined ) {
box = elem.getBoundingClientRect();
}
win = getWindow( doc );
return {
top: box.top + ( win.pageYOffset || docElem.scrollTop ) - ( docElem.clientTop || 0 ),
left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )
};
},
position: function() {
if ( !this[ 0 ] ) {
return;
}
var offsetParent, offset,
parentOffset = { top: 0, left: 0 },
elem = this[ 0 ];
// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent
if ( jQuery.css( elem, "position" ) === "fixed" ) {
// we assume that getBoundingClientRect is available when computed position is fixed
offset = elem.getBoundingClientRect();
} else {
// Get *real* offsetParent
offsetParent = this.offsetParent();
// Get correct offsets
offset = this.offset();
if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
parentOffset = offsetParent.offset();
}
// Add offsetParent borders
parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
}
// Subtract parent offsets and element margins
// note: when an element has margin: auto the offsetLeft and marginLeft
// are the same in Safari causing offset.left to incorrectly be 0
return {
top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true)
};
},
offsetParent: function() {
return this.map(function() {
var offsetParent = this.offsetParent || docElem;
while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position" ) === "static" ) ) {
offsetParent = offsetParent.offsetParent;
}
return offsetParent || docElem;
});
}
});
// Create scrollLeft and scrollTop methods
jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
var top = /Y/.test( prop );
jQuery.fn[ method ] = function( val ) {
return access( this, function( elem, method, val ) {
var win = getWindow( elem );
if ( val === undefined ) {
return win ? (prop in win) ? win[ prop ] :
win.document.documentElement[ method ] :
elem[ method ];
}
if ( win ) {
win.scrollTo(
!top ? val : jQuery( win ).scrollLeft(),
top ? val : jQuery( win ).scrollTop()
);
} else {
elem[ method ] = val;
}
}, method, val, arguments.length, null );
};
});
// Add the top/left cssHooks using jQuery.fn.position
// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
// getComputedStyle returns percent when specified for top/left/bottom/right
// rather than make the css module depend on the offset module, we just check for it here
jQuery.each( [ "top", "left" ], function( i, prop ) {
jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
function( elem, computed ) {
if ( computed ) {
computed = curCSS( elem, prop );
// if curCSS returns percentage, fallback to offset
return rnumnonpx.test( computed ) ?
jQuery( elem ).position()[ prop ] + "px" :
computed;
}
}
);
});
// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
// margin is only for outerHeight, outerWidth
jQuery.fn[ funcName ] = function( margin, value ) {
var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
return access( this, function( elem, type, value ) {
var doc;
if ( jQuery.isWindow( elem ) ) {
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
// isn't a whole lot we can do. See pull request at this URL for discussion:
// https://github.com/jquery/jquery/pull/764
return elem.document.documentElement[ "client" + name ];
}
// Get document width or height
if ( elem.nodeType === 9 ) {
doc = elem.documentElement;
// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest
// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.
return Math.max(
elem.body[ "scroll" + name ], doc[ "scroll" + name ],
elem.body[ "offset" + name ], doc[ "offset" + name ],
doc[ "client" + name ]
);
}
return value === undefined ?
// Get width or height on the element, requesting but not forcing parseFloat
jQuery.css( elem, type, extra ) :
// Set width or height on the element
jQuery.style( elem, type, value, extra );
}, type, chainable ? margin : undefined, chainable, null );
};
});
});
// The number of elements contained in the matched element set
jQuery.fn.size = function() {
return this.length;
};
jQuery.fn.andSelf = jQuery.fn.addBack;
// Register as a named AMD module, since jQuery can be concatenated with other
// files that may use define, but not via a proper concatenation script that
// understands anonymous AMD modules. A named AMD is safest and most robust
// way to register. Lowercase jquery is used because AMD module names are
// derived from file names, and jQuery is normally delivered in a lowercase
// file name. Do this after creating the global so that if an AMD module wants
// to call noConflict to hide this version of jQuery, it will work.
// Note that for maximum portability, libraries that are not jQuery should
// declare themselves as anonymous modules, and avoid setting a global if an
// AMD loader is present. jQuery is a special case. For more information, see
// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
if ( typeof define === "function" && define.amd ) {
define( "jquery", [], function() {
return jQuery;
});
}
var
// Map over jQuery in case of overwrite
_jQuery = window.jQuery,
// Map over the $ in case of overwrite
_$ = window.$;
jQuery.noConflict = function( deep ) {
if ( window.$ === jQuery ) {
window.$ = _$;
}
if ( deep && window.jQuery === jQuery ) {
window.jQuery = _jQuery;
}
return jQuery;
};
// Expose jQuery and $ identifiers, even in
// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
// and CommonJS for browser emulators (#13566)
if ( typeof noGlobal === strundefined ) {
window.jQuery = window.$ = jQuery;
}
return jQuery;
}));
},{}],16:[function(require,module,exports){
// Underscore.js 1.6.0
// http://underscorejs.org
// (c) 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.
(function() {
// Baseline setup
// --------------
// Establish the root object, `window` in the browser, or `exports` on the server.
var root = this;
// Save the previous value of the `_` variable.
var previousUnderscore = root._;
// Establish the object that gets returned to break out of a loop iteration.
var breaker = {};
// Save bytes in the minified (but not gzipped) version:
var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;
// Create quick reference variables for speed access to core prototypes.
var
push = ArrayProto.push,
slice = ArrayProto.slice,
concat = ArrayProto.concat,
toString = ObjProto.toString,
hasOwnProperty = ObjProto.hasOwnProperty;
// All **ECMAScript 5** native function implementations that we hope to use
// are declared here.
var
nativeForEach = ArrayProto.forEach,
nativeMap = ArrayProto.map,
nativeReduce = ArrayProto.reduce,
nativeReduceRight = ArrayProto.reduceRight,
nativeFilter = ArrayProto.filter,
nativeEvery = ArrayProto.every,
nativeSome = ArrayProto.some,
nativeIndexOf = ArrayProto.indexOf,
nativeLastIndexOf = ArrayProto.lastIndexOf,
nativeIsArray = Array.isArray,
nativeKeys = Object.keys,
nativeBind = FuncProto.bind;
// Create a safe reference to the Underscore object for use below.
var _ = function(obj) {
if (obj instanceof _) return obj;
if (!(this instanceof _)) return new _(obj);
this._wrapped = obj;
};
// Export the Underscore object for **Node.js**, with
// backwards-compatibility for the old `require()` API. If we're in
// the browser, add `_` as a global object via a string identifier,
// for Closure Compiler "advanced" mode.
if (typeof exports !== 'undefined') {
if (typeof module !== 'undefined' && module.exports) {
exports = module.exports = _;
}
exports._ = _;
} else {
root._ = _;
}
// Current version.
_.VERSION = '1.6.0';
// Collection Functions
// --------------------
// The cornerstone, an `each` implementation, aka `forEach`.
// Handles objects with the built-in `forEach`, arrays, and raw objects.
// Delegates to **ECMAScript 5**'s native `forEach` if available.
var each = _.each = _.forEach = function(obj, iterator, context) {
if (obj == null) return obj;
if (nativeForEach && obj.forEach === nativeForEach) {
obj.forEach(iterator, context);
} else if (obj.length === +obj.length) {
for (var i = 0, length = obj.length; i < length; i++) {
if (iterator.call(context, obj[i], i, obj) === breaker) return;
}
} else {
var keys = _.keys(obj);
for (var i = 0, length = keys.length; i < length; i++) {
if (iterator.call(context, obj[keys[i]], keys[i], obj) === breaker) return;
}
}
return obj;
};
// Return the results of applying the iterator to each element.
// Delegates to **ECMAScript 5**'s native `map` if available.
_.map = _.collect = function(obj, iterator, context) {
var results = [];
if (obj == null) return results;
if (nativeMap && obj.map === nativeMap) return obj.map(iterator, context);
each(obj, function(value, index, list) {
results.push(iterator.call(context, value, index, list));
});
return results;
};
var reduceError = 'Reduce of empty array with no initial value';
// **Reduce** builds up a single result from a list of values, aka `inject`,
// or `foldl`. Delegates to **ECMAScript 5**'s native `reduce` if available.
_.reduce = _.foldl = _.inject = function(obj, iterator, memo, context) {
var initial = arguments.length > 2;
if (obj == null) obj = [];
if (nativeReduce && obj.reduce === nativeReduce) {
if (context) iterator = _.bind(iterator, context);
return initial ? obj.reduce(iterator, memo) : obj.reduce(iterator);
}
each(obj, function(value, index, list) {
if (!initial) {
memo = value;
initial = true;
} else {
memo = iterator.call(context, memo, value, index, list);
}
});
if (!initial) throw new TypeError(reduceError);
return memo;
};
// The right-associative version of reduce, also known as `foldr`.
// Delegates to **ECMAScript 5**'s native `reduceRight` if available.
_.reduceRight = _.foldr = function(obj, iterator, memo, context) {
var initial = arguments.length > 2;
if (obj == null) obj = [];
if (nativeReduceRight && obj.reduceRight === nativeReduceRight) {
if (context) iterator = _.bind(iterator, context);
return initial ? obj.reduceRight(iterator, memo) : obj.reduceRight(iterator);
}
var length = obj.length;
if (length !== +length) {
var keys = _.keys(obj);
length = keys.length;
}
each(obj, function(value, index, list) {
index = keys ? keys[--length] : --length;
if (!initial) {
memo = obj[index];
initial = true;
} else {
memo = iterator.call(context, memo, obj[index], index, list);
}
});
if (!initial) throw new TypeError(reduceError);
return memo;
};
// Return the first value which passes a truth test. Aliased as `detect`.
_.find = _.detect = function(obj, predicate, context) {
var result;
any(obj, function(value, index, list) {
if (predicate.call(context, value, index, list)) {
result = value;
return true;
}
});
return result;
};
// Return all the elements that pass a truth test.
// Delegates to **ECMAScript 5**'s native `filter` if available.
// Aliased as `select`.
_.filter = _.select = function(obj, predicate, context) {
var results = [];
if (obj == null) return results;
if (nativeFilter && obj.filter === nativeFilter) return obj.filter(predicate, context);
each(obj, function(value, index, list) {
if (predicate.call(context, value, index, list)) results.push(value);
});
return results;
};
// Return all the elements for which a truth test fails.
_.reject = function(obj, predicate, context) {
return _.filter(obj, function(value, index, list) {
return !predicate.call(context, value, index, list);
}, context);
};
// Determine whether all of the elements match a truth test.
// Delegates to **ECMAScript 5**'s native `every` if available.
// Aliased as `all`.
_.every = _.all = function(obj, predicate, context) {
predicate || (predicate = _.identity);
var result = true;
if (obj == null) return result;
if (nativeEvery && obj.every === nativeEvery) return obj.every(predicate, context);
each(obj, function(value, index, list) {
if (!(result = result && predicate.call(context, value, index, list))) return breaker;
});
return !!result;
};
// Determine if at least one element in the object matches a truth test.
// Delegates to **ECMAScript 5**'s native `some` if available.
// Aliased as `any`.
var any = _.some = _.any = function(obj, predicate, context) {
predicate || (predicate = _.identity);
var result = false;
if (obj == null) return result;
if (nativeSome && obj.some === nativeSome) return obj.some(predicate, context);
each(obj, function(value, index, list) {
if (result || (result = predicate.call(context, value, index, list))) return breaker;
});
return !!result;
};
// Determine if the array or object contains a given value (using `===`).
// Aliased as `include`.
_.contains = _.include = function(obj, target) {
if (obj == null) return false;
if (nativeIndexOf && obj.indexOf === nativeIndexOf) return obj.indexOf(target) != -1;
return any(obj, function(value) {
return value === target;
});
};
// Invoke a method (with arguments) on every item in a collection.
_.invoke = function(obj, method) {
var args = slice.call(arguments, 2);
var isFunc = _.isFunction(method);
return _.map(obj, function(value) {
return (isFunc ? method : value[method]).apply(value, args);
});
};
// Convenience version of a common use case of `map`: fetching a property.
_.pluck = function(obj, key) {
return _.map(obj, _.property(key));
};
// Convenience version of a common use case of `filter`: selecting only objects
// containing specific `key:value` pairs.
_.where = function(obj, attrs) {
return _.filter(obj, _.matches(attrs));
};
// Convenience version of a common use case of `find`: getting the first object
// containing specific `key:value` pairs.
_.findWhere = function(obj, attrs) {
return _.find(obj, _.matches(attrs));
};
// Return the maximum element or (element-based computation).
// Can't optimize arrays of integers longer than 65,535 elements.
// See [WebKit Bug 80797](https://bugs.webkit.org/show_bug.cgi?id=80797)
_.max = function(obj, iterator, context) {
if (!iterator && _.isArray(obj) && obj[0] === +obj[0] && obj.length < 65535) {
return Math.max.apply(Math, obj);
}
var result = -Infinity, lastComputed = -Infinity;
each(obj, function(value, index, list) {
var computed = iterator ? iterator.call(context, value, index, list) : value;
if (computed > lastComputed) {
result = value;
lastComputed = computed;
}
});
return result;
};
// Return the minimum element (or element-based computation).
_.min = function(obj, iterator, context) {
if (!iterator && _.isArray(obj) && obj[0] === +obj[0] && obj.length < 65535) {
return Math.min.apply(Math, obj);
}
var result = Infinity, lastComputed = Infinity;
each(obj, function(value, index, list) {
var computed = iterator ? iterator.call(context, value, index, list) : value;
if (computed < lastComputed) {
result = value;
lastComputed = computed;
}
});
return result;
};
// Shuffle an array, using the modern version of the
// [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle).
_.shuffle = function(obj) {
var rand;
var index = 0;
var shuffled = [];
each(obj, function(value) {
rand = _.random(index++);
shuffled[index - 1] = shuffled[rand];
shuffled[rand] = value;
});
return shuffled;
};
// Sample **n** random values from a collection.
// If **n** is not specified, returns a single random element.
// The internal `guard` argument allows it to work with `map`.
_.sample = function(obj, n, guard) {
if (n == null || guard) {
if (obj.length !== +obj.length) obj = _.values(obj);
return obj[_.random(obj.length - 1)];
}
return _.shuffle(obj).slice(0, Math.max(0, n));
};
// An internal function to generate lookup iterators.
var lookupIterator = function(value) {
if (value == null) return _.identity;
if (_.isFunction(value)) return value;
return _.property(value);
};
// Sort the object's values by a criterion produced by an iterator.
_.sortBy = function(obj, iterator, context) {
iterator = lookupIterator(iterator);
return _.pluck(_.map(obj, function(value, index, list) {
return {
value: value,
index: index,
criteria: iterator.call(context, value, index, list)
};
}).sort(function(left, right) {
var a = left.criteria;
var b = right.criteria;
if (a !== b) {
if (a > b || a === void 0) return 1;
if (a < b || b === void 0) return -1;
}
return left.index - right.index;
}), 'value');
};
// An internal function used for aggregate "group by" operations.
var group = function(behavior) {
return function(obj, iterator, context) {
var result = {};
iterator = lookupIterator(iterator);
each(obj, function(value, index) {
var key = iterator.call(context, value, index, obj);
behavior(result, key, value);
});
return result;
};
};
// Groups the object's values by a criterion. Pass either a string attribute
// to group by, or a function that returns the criterion.
_.groupBy = group(function(result, key, value) {
_.has(result, key) ? result[key].push(value) : result[key] = [value];
});
// Indexes the object's values by a criterion, similar to `groupBy`, but for
// when you know that your index values will be unique.
_.indexBy = group(function(result, key, value) {
result[key] = value;
});
// Counts instances of an object that group by a certain criterion. Pass
// either a string attribute to count by, or a function that returns the
// criterion.
_.countBy = group(function(result, key) {
_.has(result, key) ? result[key]++ : result[key] = 1;
});
// Use a comparator function to figure out the smallest index at which
// an object should be inserted so as to maintain order. Uses binary search.
_.sortedIndex = function(array, obj, iterator, context) {
iterator = lookupIterator(iterator);
var value = iterator.call(context, obj);
var low = 0, high = array.length;
while (low < high) {
var mid = (low + high) >>> 1;
iterator.call(context, array[mid]) < value ? low = mid + 1 : high = mid;
}
return low;
};
// Safely create a real, live array from anything iterable.
_.toArray = function(obj) {
if (!obj) return [];
if (_.isArray(obj)) return slice.call(obj);
if (obj.length === +obj.length) return _.map(obj, _.identity);
return _.values(obj);
};
// Return the number of elements in an object.
_.size = function(obj) {
if (obj == null) return 0;
return (obj.length === +obj.length) ? obj.length : _.keys(obj).length;
};
// Array Functions
// ---------------
// Get the first element of an array. Passing **n** will return the first N
// values in the array. Aliased as `head` and `take`. The **guard** check
// allows it to work with `_.map`.
_.first = _.head = _.take = function(array, n, guard) {
if (array == null) return void 0;
if ((n == null) || guard) return array[0];
if (n < 0) return [];
return slice.call(array, 0, n);
};
// Returns everything but the last entry of the array. Especially useful on
// the arguments object. Passing **n** will return all the values in
// the array, excluding the last N. The **guard** check allows it to work with
// `_.map`.
_.initial = function(array, n, guard) {
return slice.call(array, 0, array.length - ((n == null) || guard ? 1 : n));
};
// Get the last element of an array. Passing **n** will return the last N
// values in the array. The **guard** check allows it to work with `_.map`.
_.last = function(array, n, guard) {
if (array == null) return void 0;
if ((n == null) || guard) return array[array.length - 1];
return slice.call(array, Math.max(array.length - n, 0));
};
// Returns everything but the first entry of the array. Aliased as `tail` and `drop`.
// Especially useful on the arguments object. Passing an **n** will return
// the rest N values in the array. The **guard**
// check allows it to work with `_.map`.
_.rest = _.tail = _.drop = function(array, n, guard) {
return slice.call(array, (n == null) || guard ? 1 : n);
};
// Trim out all falsy values from an array.
_.compact = function(array) {
return _.filter(array, _.identity);
};
// Internal implementation of a recursive `flatten` function.
var flatten = function(input, shallow, output) {
if (shallow && _.every(input, _.isArray)) {
return concat.apply(output, input);
}
each(input, function(value) {
if (_.isArray(value) || _.isArguments(value)) {
shallow ? push.apply(output, value) : flatten(value, shallow, output);
} else {
output.push(value);
}
});
return output;
};
// Flatten out an array, either recursively (by default), or just one level.
_.flatten = function(array, shallow) {
return flatten(array, shallow, []);
};
// Return a version of the array that does not contain the specified value(s).
_.without = function(array) {
return _.difference(array, slice.call(arguments, 1));
};
// Split an array into two arrays: one whose elements all satisfy the given
// predicate, and one whose elements all do not satisfy the predicate.
_.partition = function(array, predicate) {
var pass = [], fail = [];
each(array, function(elem) {
(predicate(elem) ? pass : fail).push(elem);
});
return [pass, fail];
};
// Produce a duplicate-free version of the array. If the array has already
// been sorted, you have the option of using a faster algorithm.
// Aliased as `unique`.
_.uniq = _.unique = function(array, isSorted, iterator, context) {
if (_.isFunction(isSorted)) {
context = iterator;
iterator = isSorted;
isSorted = false;
}
var initial = iterator ? _.map(array, iterator, context) : array;
var results = [];
var seen = [];
each(initial, function(value, index) {
if (isSorted ? (!index || seen[seen.length - 1] !== value) : !_.contains(seen, value)) {
seen.push(value);
results.push(array[index]);
}
});
return results;
};
// Produce an array that contains the union: each distinct element from all of
// the passed-in arrays.
_.union = function() {
return _.uniq(_.flatten(arguments, true));
};
// Produce an array that contains every item shared between all the
// passed-in arrays.
_.intersection = function(array) {
var rest = slice.call(arguments, 1);
return _.filter(_.uniq(array), function(item) {
return _.every(rest, function(other) {
return _.contains(other, item);
});
});
};
// Take the difference between one array and a number of other arrays.
// Only the elements present in just the first array will remain.
_.difference = function(array) {
var rest = concat.apply(ArrayProto, slice.call(arguments, 1));
return _.filter(array, function(value){ return !_.contains(rest, value); });
};
// Zip together multiple lists into a single array -- elements that share
// an index go together.
_.zip = function() {
var length = _.max(_.pluck(arguments, 'length').concat(0));
var results = new Array(length);
for (var i = 0; i < length; i++) {
results[i] = _.pluck(arguments, '' + i);
}
return results;
};
// Converts lists into objects. Pass either a single array of `[key, value]`
// pairs, or two parallel arrays of the same length -- one of keys, and one of
// the corresponding values.
_.object = function(list, values) {
if (list == null) return {};
var result = {};
for (var i = 0, length = list.length; i < length; i++) {
if (values) {
result[list[i]] = values[i];
} else {
result[list[i][0]] = list[i][1];
}
}
return result;
};
// If the browser doesn't supply us with indexOf (I'm looking at you, **MSIE**),
// we need this function. Return the position of the first occurrence of an
// item in an array, or -1 if the item is not included in the array.
// Delegates to **ECMAScript 5**'s native `indexOf` if available.
// If the array is large and already in sort order, pass `true`
// for **isSorted** to use binary search.
_.indexOf = function(array, item, isSorted) {
if (array == null) return -1;
var i = 0, length = array.length;
if (isSorted) {
if (typeof isSorted == 'number') {
i = (isSorted < 0 ? Math.max(0, length + isSorted) : isSorted);
} else {
i = _.sortedIndex(array, item);
return array[i] === item ? i : -1;
}
}
if (nativeIndexOf && array.indexOf === nativeIndexOf) return array.indexOf(item, isSorted);
for (; i < length; i++) if (array[i] === item) return i;
return -1;
};
// Delegates to **ECMAScript 5**'s native `lastIndexOf` if available.
_.lastIndexOf = function(array, item, from) {
if (array == null) return -1;
var hasIndex = from != null;
if (nativeLastIndexOf && array.lastIndexOf === nativeLastIndexOf) {
return hasIndex ? array.lastIndexOf(item, from) : array.lastIndexOf(item);
}
var i = (hasIndex ? from : array.length);
while (i--) if (array[i] === item) return i;
return -1;
};
// Generate an integer Array containing an arithmetic progression. A port of
// the native Python `range()` function. See
// [the Python documentation](http://docs.python.org/library/functions.html#range).
_.range = function(start, stop, step) {
if (arguments.length <= 1) {
stop = start || 0;
start = 0;
}
step = arguments[2] || 1;
var length = Math.max(Math.ceil((stop - start) / step), 0);
var idx = 0;
var range = new Array(length);
while(idx < length) {
range[idx++] = start;
start += step;
}
return range;
};
// Function (ahem) Functions
// ------------------
// Reusable constructor function for prototype setting.
var ctor = function(){};
// Create a function bound to a given object (assigning `this`, and arguments,
// optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if
// available.
_.bind = function(func, context) {
var args, bound;
if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
if (!_.isFunction(func)) throw new TypeError;
args = slice.call(arguments, 2);
return bound = function() {
if (!(this instanceof bound)) return func.apply(context, args.concat(slice.call(arguments)));
ctor.prototype = func.prototype;
var self = new ctor;
ctor.prototype = null;
var result = func.apply(self, args.concat(slice.call(arguments)));
if (Object(result) === result) return result;
return self;
};
};
// Partially apply a function by creating a version that has had some of its
// arguments pre-filled, without changing its dynamic `this` context. _ acts
// as a placeholder, allowing any combination of arguments to be pre-filled.
_.partial = function(func) {
var boundArgs = slice.call(arguments, 1);
return function() {
var position = 0;
var args = boundArgs.slice();
for (var i = 0, length = args.length; i < length; i++) {
if (args[i] === _) args[i] = arguments[position++];
}
while (position < arguments.length) args.push(arguments[position++]);
return func.apply(this, args);
};
};
// Bind a number of an object's methods to that object. Remaining arguments
// are the method names to be bound. Useful for ensuring that all callbacks
// defined on an object belong to it.
_.bindAll = function(obj) {
var funcs = slice.call(arguments, 1);
if (funcs.length === 0) throw new Error('bindAll must be passed function names');
each(funcs, function(f) { obj[f] = _.bind(obj[f], obj); });
return obj;
};
// Memoize an expensive function by storing its results.
_.memoize = function(func, hasher) {
var memo = {};
hasher || (hasher = _.identity);
return function() {
var key = hasher.apply(this, arguments);
return _.has(memo, key) ? memo[key] : (memo[key] = func.apply(this, arguments));
};
};
// Delays a function for the given number of milliseconds, and then calls
// it with the arguments supplied.
_.delay = function(func, wait) {
var args = slice.call(arguments, 2);
return setTimeout(function(){ return func.apply(null, args); }, wait);
};
// Defers a function, scheduling it to run after the current call stack has
// cleared.
_.defer = function(func) {
return _.delay.apply(_, [func, 1].concat(slice.call(arguments, 1)));
};
// Returns a function, that, when invoked, will only be triggered at most once
// during a given window of time. Normally, the throttled function will run
// as much as it can, without ever going more than once per `wait` duration;
// but if you'd like to disable the execution on the leading edge, pass
// `{leading: false}`. To disable execution on the trailing edge, ditto.
_.throttle = function(func, wait, options) {
var context, args, result;
var timeout = null;
var previous = 0;
options || (options = {});
var later = function() {
previous = options.leading === false ? 0 : _.now();
timeout = null;
result = func.apply(context, args);
context = args = null;
};
return function() {
var now = _.now();
if (!previous && options.leading === false) previous = now;
var remaining = wait - (now - previous);
context = this;
args = arguments;
if (remaining <= 0) {
clearTimeout(timeout);
timeout = null;
previous = now;
result = func.apply(context, args);
context = args = null;
} else if (!timeout && options.trailing !== false) {
timeout = setTimeout(later, remaining);
}
return result;
};
};
// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
_.debounce = function(func, wait, immediate) {
var timeout, args, context, timestamp, result;
var later = function() {
var last = _.now() - timestamp;
if (last < wait) {
timeout = setTimeout(later, wait - last);
} else {
timeout = null;
if (!immediate) {
result = func.apply(context, args);
context = args = null;
}
}
};
return function() {
context = this;
args = arguments;
timestamp = _.now();
var callNow = immediate && !timeout;
if (!timeout) {
timeout = setTimeout(later, wait);
}
if (callNow) {
result = func.apply(context, args);
context = args = null;
}
return result;
};
};
// Returns a function that will be executed at most one time, no matter how
// often you call it. Useful for lazy initialization.
_.once = function(func) {
var ran = false, memo;
return function() {
if (ran) return memo;
ran = true;
memo = func.apply(this, arguments);
func = null;
return memo;
};
};
// Returns the first function passed as an argument to the second,
// allowing you to adjust arguments, run code before and after, and
// conditionally execute the original function.
_.wrap = function(func, wrapper) {
return _.partial(wrapper, func);
};
// Returns a function that is the composition of a list of functions, each
// consuming the return value of the function that follows.
_.compose = function() {
var funcs = arguments;
return function() {
var args = arguments;
for (var i = funcs.length - 1; i >= 0; i--) {
args = [funcs[i].apply(this, args)];
}
return args[0];
};
};
// Returns a function that will only be executed after being called N times.
_.after = function(times, func) {
return function() {
if (--times < 1) {
return func.apply(this, arguments);
}
};
};
// Object Functions
// ----------------
// Retrieve the names of an object's properties.
// Delegates to **ECMAScript 5**'s native `Object.keys`
_.keys = function(obj) {
if (!_.isObject(obj)) return [];
if (nativeKeys) return nativeKeys(obj);
var keys = [];
for (var key in obj) if (_.has(obj, key)) keys.push(key);
return keys;
};
// Retrieve the values of an object's properties.
_.values = function(obj) {
var keys = _.keys(obj);
var length = keys.length;
var values = new Array(length);
for (var i = 0; i < length; i++) {
values[i] = obj[keys[i]];
}
return values;
};
// Convert an object into a list of `[key, value]` pairs.
_.pairs = function(obj) {
var keys = _.keys(obj);
var length = keys.length;
var pairs = new Array(length);
for (var i = 0; i < length; i++) {
pairs[i] = [keys[i], obj[keys[i]]];
}
return pairs;
};
// Invert the keys and values of an object. The values must be serializable.
_.invert = function(obj) {
var result = {};
var keys = _.keys(obj);
for (var i = 0, length = keys.length; i < length; i++) {
result[obj[keys[i]]] = keys[i];
}
return result;
};
// Return a sorted list of the function names available on the object.
// Aliased as `methods`
_.functions = _.methods = function(obj) {
var names = [];
for (var key in obj) {
if (_.isFunction(obj[key])) names.push(key);
}
return names.sort();
};
// Extend a given object with all the properties in passed-in object(s).
_.extend = function(obj) {
each(slice.call(arguments, 1), function(source) {
if (source) {
for (var prop in source) {
obj[prop] = source[prop];
}
}
});
return obj;
};
// Return a copy of the object only containing the whitelisted properties.
_.pick = function(obj) {
var copy = {};
var keys = concat.apply(ArrayProto, slice.call(arguments, 1));
each(keys, function(key) {
if (key in obj) copy[key] = obj[key];
});
return copy;
};
// Return a copy of the object without the blacklisted properties.
_.omit = function(obj) {
var copy = {};
var keys = concat.apply(ArrayProto, slice.call(arguments, 1));
for (var key in obj) {
if (!_.contains(keys, key)) copy[key] = obj[key];
}
return copy;
};
// Fill in a given object with default properties.
_.defaults = function(obj) {
each(slice.call(arguments, 1), function(source) {
if (source) {
for (var prop in source) {
if (obj[prop] === void 0) obj[prop] = source[prop];
}
}
});
return obj;
};
// Create a (shallow-cloned) duplicate of an object.
_.clone = function(obj) {
if (!_.isObject(obj)) return obj;
return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
};
// Invokes interceptor with the obj, and then returns obj.
// The primary purpose of this method is to "tap into" a method chain, in
// order to perform operations on intermediate results within the chain.
_.tap = function(obj, interceptor) {
interceptor(obj);
return obj;
};
// Internal recursive comparison function for `isEqual`.
var eq = function(a, b, aStack, bStack) {
// Identical objects are equal. `0 === -0`, but they aren't identical.
// See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).
if (a === b) return a !== 0 || 1 / a == 1 / b;
// A strict comparison is necessary because `null == undefined`.
if (a == null || b == null) return a === b;
// Unwrap any wrapped objects.
if (a instanceof _) a = a._wrapped;
if (b instanceof _) b = b._wrapped;
// Compare `[[Class]]` names.
var className = toString.call(a);
if (className != toString.call(b)) return false;
switch (className) {
// Strings, numbers, dates, and booleans are compared by value.
case '[object String]':
// Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is
// equivalent to `new String("5")`.
return a == String(b);
case '[object Number]':
// `NaN`s are equivalent, but non-reflexive. An `egal` comparison is performed for
// other numeric values.
return a != +a ? b != +b : (a == 0 ? 1 / a == 1 / b : a == +b);
case '[object Date]':
case '[object Boolean]':
// Coerce dates and booleans to numeric primitive values. Dates are compared by their
// millisecond representations. Note that invalid dates with millisecond representations
// of `NaN` are not equivalent.
return +a == +b;
// RegExps are compared by their source patterns and flags.
case '[object RegExp]':
return a.source == b.source &&
a.global == b.global &&
a.multiline == b.multiline &&
a.ignoreCase == b.ignoreCase;
}
if (typeof a != 'object' || typeof b != 'object') return false;
// Assume equality for cyclic structures. The algorithm for detecting cyclic
// structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.
var length = aStack.length;
while (length--) {
// Linear search. Performance is inversely proportional to the number of
// unique nested structures.
if (aStack[length] == a) return bStack[length] == b;
}
// Objects with different constructors are not equivalent, but `Object`s
// from different frames are.
var aCtor = a.constructor, bCtor = b.constructor;
if (aCtor !== bCtor && !(_.isFunction(aCtor) && (aCtor instanceof aCtor) &&
_.isFunction(bCtor) && (bCtor instanceof bCtor))
&& ('constructor' in a && 'constructor' in b)) {
return false;
}
// Add the first object to the stack of traversed objects.
aStack.push(a);
bStack.push(b);
var size = 0, result = true;
// Recursively compare objects and arrays.
if (className == '[object Array]') {
// Compare array lengths to determine if a deep comparison is necessary.
size = a.length;
result = size == b.length;
if (result) {
// Deep compare the contents, ignoring non-numeric properties.
while (size--) {
if (!(result = eq(a[size], b[size], aStack, bStack))) break;
}
}
} else {
// Deep compare objects.
for (var key in a) {
if (_.has(a, key)) {
// Count the expected number of properties.
size++;
// Deep compare each member.
if (!(result = _.has(b, key) && eq(a[key], b[key], aStack, bStack))) break;
}
}
// Ensure that both objects contain the same number of properties.
if (result) {
for (key in b) {
if (_.has(b, key) && !(size--)) break;
}
result = !size;
}
}
// Remove the first object from the stack of traversed objects.
aStack.pop();
bStack.pop();
return result;
};
// Perform a deep comparison to check if two objects are equal.
_.isEqual = function(a, b) {
return eq(a, b, [], []);
};
// Is a given array, string, or object empty?
// An "empty" object has no enumerable own-properties.
_.isEmpty = function(obj) {
if (obj == null) return true;
if (_.isArray(obj) || _.isString(obj)) return obj.length === 0;
for (var key in obj) if (_.has(obj, key)) return false;
return true;
};
// Is a given value a DOM element?
_.isElement = function(obj) {
return !!(obj && obj.nodeType === 1);
};
// Is a given value an array?
// Delegates to ECMA5's native Array.isArray
_.isArray = nativeIsArray || function(obj) {
return toString.call(obj) == '[object Array]';
};
// Is a given variable an object?
_.isObject = function(obj) {
return obj === Object(obj);
};
// Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp.
each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp'], function(name) {
_['is' + name] = function(obj) {
return toString.call(obj) == '[object ' + name + ']';
};
});
// Define a fallback version of the method in browsers (ahem, IE), where
// there isn't any inspectable "Arguments" type.
if (!_.isArguments(arguments)) {
_.isArguments = function(obj) {
return !!(obj && _.has(obj, 'callee'));
};
}
// Optimize `isFunction` if appropriate.
if (typeof (/./) !== 'function') {
_.isFunction = function(obj) {
return typeof obj === 'function';
};
}
// Is a given object a finite number?
_.isFinite = function(obj) {
return isFinite(obj) && !isNaN(parseFloat(obj));
};
// Is the given value `NaN`? (NaN is the only number which does not equal itself).
_.isNaN = function(obj) {
return _.isNumber(obj) && obj != +obj;
};
// Is a given value a boolean?
_.isBoolean = function(obj) {
return obj === true || obj === false || toString.call(obj) == '[object Boolean]';
};
// Is a given value equal to null?
_.isNull = function(obj) {
return obj === null;
};
// Is a given variable undefined?
_.isUndefined = function(obj) {
return obj === void 0;
};
// Shortcut function for checking if an object has a given property directly
// on itself (in other words, not on a prototype).
_.has = function(obj, key) {
return hasOwnProperty.call(obj, key);
};
// Utility Functions
// -----------------
// Run Underscore.js in *noConflict* mode, returning the `_` variable to its
// previous owner. Returns a reference to the Underscore object.
_.noConflict = function() {
root._ = previousUnderscore;
return this;
};
// Keep the identity function around for default iterators.
_.identity = function(value) {
return value;
};
_.constant = function(value) {
return function () {
return value;
};
};
_.property = function(key) {
return function(obj) {
return obj[key];
};
};
// Returns a predicate for checking whether an object has a given set of `key:value` pairs.
_.matches = function(attrs) {
return function(obj) {
if (obj === attrs) return true; //avoid comparing an object to itself.
for (var key in attrs) {
if (attrs[key] !== obj[key])
return false;
}
return true;
}
};
// Run a function **n** times.
_.times = function(n, iterator, context) {
var accum = Array(Math.max(0, n));
for (var i = 0; i < n; i++) accum[i] = iterator.call(context, i);
return accum;
};
// Return a random integer between min and max (inclusive).
_.random = function(min, max) {
if (max == null) {
max = min;
min = 0;
}
return min + Math.floor(Math.random() * (max - min + 1));
};
// A (possibly faster) way to get the current timestamp as an integer.
_.now = Date.now || function() { return new Date().getTime(); };
// List of HTML entities for escaping.
var entityMap = {
escape: {
'&': '&',
'<': '<',
'>': '>',
'"': '"',
"'": '''
}
};
entityMap.unescape = _.invert(entityMap.escape);
// Regexes containing the keys and values listed immediately above.
var entityRegexes = {
escape: new RegExp('[' + _.keys(entityMap.escape).join('') + ']', 'g'),
unescape: new RegExp('(' + _.keys(entityMap.unescape).join('|') + ')', 'g')
};
// Functions for escaping and unescaping strings to/from HTML interpolation.
_.each(['escape', 'unescape'], function(method) {
_[method] = function(string) {
if (string == null) return '';
return ('' + string).replace(entityRegexes[method], function(match) {
return entityMap[method][match];
});
};
});
// If the value of the named `property` is a function then invoke it with the
// `object` as context; otherwise, return it.
_.result = function(object, property) {
if (object == null) return void 0;
var value = object[property];
return _.isFunction(value) ? value.call(object) : value;
};
// Add your own custom functions to the Underscore object.
_.mixin = function(obj) {
each(_.functions(obj), function(name) {
var func = _[name] = obj[name];
_.prototype[name] = function() {
var args = [this._wrapped];
push.apply(args, arguments);
return result.call(this, func.apply(_, args));
};
});
};
// Generate a unique integer id (unique within the entire client session).
// Useful for temporary DOM ids.
var idCounter = 0;
_.uniqueId = function(prefix) {
var id = ++idCounter + '';
return prefix ? prefix + id : id;
};
// By default, Underscore uses ERB-style template delimiters, change the
// following template settings to use alternative delimiters.
_.templateSettings = {
evaluate : /<%([\s\S]+?)%>/g,
interpolate : /<%=([\s\S]+?)%>/g,
escape : /<%-([\s\S]+?)%>/g
};
// When customizing `templateSettings`, if you don't want to define an
// interpolation, evaluation or escaping regex, we need one that is
// guaranteed not to match.
var noMatch = /(.)^/;
// Certain characters need to be escaped so that they can be put into a
// string literal.
var escapes = {
"'": "'",
'\\': '\\',
'\r': 'r',
'\n': 'n',
'\t': 't',
'\u2028': 'u2028',
'\u2029': 'u2029'
};
var escaper = /\\|'|\r|\n|\t|\u2028|\u2029/g;
// JavaScript micro-templating, similar to John Resig's implementation.
// Underscore templating handles arbitrary delimiters, preserves whitespace,
// and correctly escapes quotes within interpolated code.
_.template = function(text, data, settings) {
var render;
settings = _.defaults({}, settings, _.templateSettings);
// Combine delimiters into one regular expression via alternation.
var matcher = new RegExp([
(settings.escape || noMatch).source,
(settings.interpolate || noMatch).source,
(settings.evaluate || noMatch).source
].join('|') + '|$', 'g');
// Compile the template source, escaping string literals appropriately.
var index = 0;
var source = "__p+='";
text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {
source += text.slice(index, offset)
.replace(escaper, function(match) { return '\\' + escapes[match]; });
if (escape) {
source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'";
}
if (interpolate) {
source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'";
}
if (evaluate) {
source += "';\n" + evaluate + "\n__p+='";
}
index = offset + match.length;
return match;
});
source += "';\n";
// If a variable is not specified, place data values in local scope.
if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n';
source = "var __t,__p='',__j=Array.prototype.join," +
"print=function(){__p+=__j.call(arguments,'');};\n" +
source + "return __p;\n";
try {
render = new Function(settings.variable || 'obj', '_', source);
} catch (e) {
e.source = source;
throw e;
}
if (data) return render(data, _);
var template = function(data) {
return render.call(this, data, _);
};
// Provide the compiled function source as a convenience for precompilation.
template.source = 'function(' + (settings.variable || 'obj') + '){\n' + source + '}';
return template;
};
// Add a "chain" function, which will delegate to the wrapper.
_.chain = function(obj) {
return _(obj).chain();
};
// OOP
// ---------------
// If Underscore is called as a function, it returns a wrapped object that
// can be used OO-style. This wrapper holds altered versions of all the
// underscore functions. Wrapped objects may be chained.
// Helper function to continue chaining intermediate results.
var result = function(obj) {
return this._chain ? _(obj).chain() : obj;
};
// Add all of the Underscore functions to the wrapper object.
_.mixin(_);
// Add all mutator Array functions to the wrapper.
each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
var method = ArrayProto[name];
_.prototype[name] = function() {
var obj = this._wrapped;
method.apply(obj, arguments);
if ((name == 'shift' || name == 'splice') && obj.length === 0) delete obj[0];
return result.call(this, obj);
};
});
// Add all accessor Array functions to the wrapper.
each(['concat', 'join', 'slice'], function(name) {
var method = ArrayProto[name];
_.prototype[name] = function() {
return result.call(this, method.apply(this._wrapped, arguments));
};
});
_.extend(_.prototype, {
// Start chaining a wrapped Underscore object.
chain: function() {
this._chain = true;
return this;
},
// Extracts the result from a wrapped and chained object.
value: function() {
return this._wrapped;
}
});
// AMD registration happens at the end for compatibility with AMD loaders
// that may not enforce next-turn semantics on modules. Even though general
// practice for AMD registration is to be anonymous, underscore registers
// as a named module because, like jQuery, it is a base library that is
// popular enough to be bundled in a third party lib, but not be part of
// an AMD load request. Those cases could generate an error when an
// anonymous define() is called outside of a loader request.
if (typeof define === 'function' && define.amd) {
define('underscore', [], function() {
return _;
});
}
}).call(this);
},{}]},{},[2]); |
import React, { PropTypes, Component } from 'react'; // eslint-disable-line no-unused-vars
import emptyFunction from 'fbjs/lib/emptyFunction';
function withContext(ComposedComponent) {
return class WithContext extends Component {
static propTypes = {
context: PropTypes.shape({
onInsertCss: PropTypes.func,
onSetTitle: PropTypes.func,
onSetMeta: PropTypes.func,
onPageNotFound: PropTypes.func
})
};
static childContextTypes = {
onInsertCss: PropTypes.func.isRequired,
onSetTitle: PropTypes.func.isRequired,
onSetMeta: PropTypes.func.isRequired,
onPageNotFound: PropTypes.func.isRequired
};
getChildContext() {
let context = this.props.context;
return {
onInsertCss: context.onInsertCss || emptyFunction,
onSetTitle: context.onSetTitle || emptyFunction,
onSetMeta: context.onSetMeta || emptyFunction,
onPageNotFound: context.onPageNotFound || emptyFunction
};
}
render() {
let { context, ...other } = this.props; // eslint-disable-line no-unused-vars
return <ComposedComponent {...other} />;
}
};
}
export default withContext;
|
/**
* This is the Javascript file that drives the SolarYpsi administration portal.
* @author Nik Estep
* @date March 2, 2013
*/
// Declare global variables
var g_newSiteIDValidationIndex = 0;
var g_newSiteIDIsValid = false;
var g_newSiteIDValidationComplete = false;
var g_test = undefined;
var g_cron = undefined;
/**
* Perform page startup operations once the document is ready.
*/
$(function() {
// Construct the jQuery UI tab set
$(".tabs").tabs ();
// Stylize all buttons
$("input[type='button']").button ();
// Set up the sortable lists
$(".sortable-list").sortable ();
$(".sortable-list").disableSelection ();
// Build WYSIWYG editors
$("#txaPresentationFooter").wysiwyg ({
autoSave: true
});
/*$("#txaEvents, #txaAbout, #txaContact").wysiwyg ({
autoSave: true
});*/
$("#txaEvents").wysiwyg ({
autoSave: true
});
$("#txaAbout").wysiwyg ({
autoSave: true
});
$("#txaContact").wysiwyg ({
autoSave: true
});
// Enable hover for edit/delete icons
setIconHover ();
// Bind element events
bindEvents ();
bindIconEvents ();
});
/**
* Bind all events to their respective elements.
*/
function bindEvents () {
// Automatically validate the new site ID
$("#txtNewSiteID").on ('change', function (event) {
if ($("#txtNewSiteID").val () === 'SELECT') {
$("#spnNewSiteIDValid").removeClass ('inputValid');
$("#spnNewSiteIDValid").addClass ('inputError');
return;
}
// Set that the request is pending
g_newSiteIDValidationComplete = false;
// Set the request index for this validation pass
// The purpose of this is to allow us to ignore old requests if the user
// has made multiple changes and triggered this event rapidly. Only
// the most recent request result should be displayed to the user.
var requestIdx = (++g_newSiteIDValidationIndex);
$.ajax ({
url: 'ajax/newSiteIDValid.php',
method: 'POST',
data: {
requestIndex: requestIdx,
siteID: $("#txtNewSiteID").val ()
},
dataType: 'json',
success: function (data) {
if (data.requestIndex === g_newSiteIDValidationIndex) {
if (data.isValid) {
// Display checkmark
showSuccess ("#spnNewSiteIDValid");
}
else {
// Display 'X'
showError ("#spnNewSiteIDValid");
}
g_newSiteIDValidationComplete = true;
}
},
error: function () {
g_newSiteIDIsValid = false;
}
});
});
// Create a new site
$("#btnCreateSite").on ('click', function (event) {
// Validate the inputs
if ($.trim ($("#txtNewSiteID").val ()) === '') {
alert ('Please enter a site ID.');
return;
}
if ($.trim ($("#txtNewSiteDesc").val ()) === '') {
alert ('Please enter a new site description.');
return;
}
$.ajax ({
url: 'ajax/saveNewSite.php',
method: 'POST',
data: {
siteID: $("#txtNewSiteID").val (),
description: $("#txtNewSiteDesc").val ()
},
dataType: 'json',
success: function (data) {
if (data.result) {
// Clear the forms
$("#txtNewSiteID").val ('');
$("#spnNewSiteIDValid").removeClass ('inputValid');
$("#spnNewSiteIDValid").removeClass ('inputError');
$("#txtNewSiteDesc").val ('');
$("#selSites").find ('option').remove ();
$('<option>').val ('SELECT')
.html ('-- Select a Site')
.appendTo ($("#selSites"));
// Re-populate the sites drop down list
$.each (data.sites, function (id, desc) {
$('<option>').val (id)
.html (desc)
.appendTo ($("#selSites"));
});
// Select the just created site and fire the even to load
// the site for edit
$("#selSites").val (data.siteID);
$("#btnEditSite").click ();
}
else {
alert ('An error occurred: ' + data.error_msg);
}
},
error: function () {
alert ('An unknown error has occurred.');
}
});
});
// Hide the site edit div when a new site is selected
$("#selSites").on ('change', function (event) {
$("#dvEditSite").hide ();
});
// Edit a site
$("#btnEditSite").on ('click', function (event) {
if ($("#selSites").val () === 'SELECT') {
return;
}
$.ajax ({
url: 'ajax/siteDetails.php',
method: 'POST',
data: {
siteID: $("#selSites").val ()
},
dataType: 'json',
success: function (data) {
// Populate basic information fields
$("#selType").val (data.inst_type);
$("#txtCompleted").val (data.completed);
$("#txtNumberPanels").val (data.panel_desc);
$("#txtAnglePanels").val (data.panel_angle);
$("#txtInverter").val (data.inverter);
$("#txtOutput").val (data.rated_output);
$("#txtInstaller").val (data.installer);
$("#txtInstallerURL").val (data.installer_url);
$("#txtContact").val (data.contact);
$("#txtContactURL").val (data.contact_url);
$("#txaList").val (data.list_desc);
$("#selStatus").val (data.status);
$("#selInCity").val (data.loc_city);
$("#txtLatitude").val (data.loc_lat);
$("#txtLongitude").val (data.loc_long);
$("#txtMaxWH").val (data.max_wh);
$("#txtMaxKW").val (data.max_kw);
$("#selMeteringType").val (data.meter_type);
$("#txtQR").val (data.qr_code);
// Render resource sets
renderDocumentOrReportSortable ('ulDocumentSort', data.doc_link);
renderDocumentOrReportSortable ('ulReportSort', data.report);
renderImageSortable ('ulImageSort', data.image, data.base_url);
// Show the block
$("#dvEditSite").show ();
$("#spnSiteEditLabel").html ($("#selSites option:selected").text ());
$(".frmHiddenSiteID").val ($("#selSites").val ());
},
error: function () {
alert ('An unknown error has occurred.');
}
});
});
// Save site basic information
$("#btnSaveBasic").on ('click', function (event) {
// Validate the inputs first
// At this time, just check that numeric values are blank or a valid
// number
if ($("#txtOutput").val () !== '' && isNaN (parseInt ($("#txtOutput").val ()))) {
alert ('Rated output must be a valid integer number.');
return;
}
if ($("#txtLatitude").val () !== '' && isNaN (parseFloat ($("#txtLatitude").val ()))) {
alert ('Latitude must be a valid decimal number.');
return;
}
if ($("#txtLongitude").val () !== '' && isNaN (parseFloat ($("#txtLongitude").val ()))) {
alert ('Longitude must be a valid decimal number.');
return;
}
if ($("#txtMaxWH").val () !== '' && isNaN (parseInt ($("#txtMaxWH").val ()))) {
alert ('Max Wh must be a valid integer number.');
return;
}
if ($("#txtMaxKW").val () !== '' && isNaN (parseFloat ($("#txtMaxKW").val ()))) {
alert ('Max kW must be a valid decimal number.');
return;
}
// Start building the data to send over
var obj_data = {
siteID: $("#selSites").val (),
inst_type: $("#selType").val (),
completed: $("#txtCompleted").val (),
panel_desc: $("#txtNumberPanels").val (),
panel_angle: $("#txtAnglePanels").val (),
inverter: $("#txtInverter").val (),
rated_output: $("#txtOutput").val (),
installer: $("#txtInstaller").val (),
installer_url: $("#txtInstallerURL").val (),
contact: $("#txtContact").val (),
contact_url: $("#txtContactURL").val (),
list_desc: $.trim ($("#txaList").val ()),
status: $("#selStatus").val (),
loc_city: $("#selInCity").val (),
loc_lat: $("#txtLatitude").val (),
loc_long: $("#txtLongitude").val (),
max_wh: $("#txtMaxWH").val (),
max_kw: $("#txtMaxKW").val (),
meter_type: $("#selMeteringType").val ()
};
// TODO: Add to the data information related to metering
// Send the request
$.ajax ({
url: 'ajax/saveSiteDetails.php',
method: 'POST',
data: obj_data,
dataType: 'json',
success: function (data) {
if (data.result) {
showSuccess ("#spnBasicSaveValid");
}
else {
alert ('An error occurred.\r\nMySQL Error Msg: ' +
data.err_mysql);
showError ("#spnBasicSaveValid");
}
},
error: function () {
alert ('An unknown error has occurred.');
showError ("#spnBasicSaveValid");
}
});
});
// Events for uploading/saving resources
$("#btnUploadDocument").on ('click', function (event) {
$("#divPrgDocument").show ();
uploadFile ('frmDocument', 'ulDocumentSort', 'divPrgDocument');
});
$("#btnUploadLink").on ('click', function (event) {
uploadLink ('frmDocLinks', 'ulDocumentSort');
});
$("#btnUploadReport").on ('click', function (event) {
$("#divPrgReport").show ();
uploadFile ('frmReport', 'ulReportSort', 'divPrgReport');
});
$("#btnUploadImage").on ('click', function (event) {
$("#divPrgImage").show ();
uploadFile ('frmImage', 'ulImageSort', 'divPrgImage');
});
// Events for saving resource orderings
$("#btnSaveDocuments").on ('click', function (event) {
saveResourceOrdering ('ulDocumentSort', 'spnDocumentSortResult');
});
$("#btnSaveReports").on ('click', function (event) {
saveResourceOrdering ('ulReportSort', 'spnReportSortResult');
});
$("#btnSaveImages").on ('click', function (event) {
saveResourceOrdering ('ulImageSort', 'spnImageSortResult');
});
// Event for saving QR video embed ID
$("#btnSaveQR").on ('click', function (event) {
// Start building the data to send over
var obj_data = {
siteID: $("#selSites").val (),
qr_code: $("#txtQR").val ()
};
// Send the request
$.ajax ({
url: 'ajax/saveQREmbedID.php',
method: 'POST',
data: obj_data,
dataType: 'json',
success: function (data) {
if (data.result) {
showSuccess ("#spnQRResult");
}
else {
alert ('An error occurred.\r\nMySQL Error Msg: ' +
data.err_mysql);
showError ("#spnQRResult");
}
},
error: function () {
alert ('An unknown error has occurred.');
showError ("#spnQRResult");
}
});
});
// Events for the link page
$("#btnSaveLink").on ('click', function (event) {
$.ajax ({
url: 'ajax/saveLink.php',
type: 'POST',
data: {
'title': $.trim ($("#frmLink input[name='title']").val ()),
'description': $.trim ($("#frmLink input[name='description']").val ()),
'visible_link': $.trim ($("#frmLink input[name='visible_link']").val ()),
'full_link': $.trim ($("#frmLink input[name='full_link']").val ())
},
dataType: 'json',
success: function (data) {
if (data.success) {
// Build a new element to append to the list
var li = $('<li>').addClass ('ui-state-default');
$('<span>').addClass ('sortable-hidden-id')
.addClass ('hidden')
.html (data.id)
.appendTo (li);
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-arrowthick-2-n-s')
.appendTo (li);
var span = $('<span>').addClass ('link-content')
.appendTo (li);
var div = $('<div>').appendTo (span);
$('<span>').addClass ('bold')
.html (data.title)
.appendTo (div);
if (data.description !== null) {
$('<span>').html (' (' + data.description + ')')
.appendTo (div);
}
div = $('<div>').addClass ('url-and-edit')
.appendTo (span);
$('<a>').attr ('href', data.full_link)
.html (data.visible_link + ' ')
.appendTo ($('<span>').addClass('link-url')
.appendTo (div));
var editSpan = $('<span>').addClass('link-edit')
.appendTo(div);
var deleteSpan = $('<span>').addClass('edit-delete-icon-width')
.addClass('action-delete-link')
.addClass('ui-state-default')
.addClass('ui-corner-all')
.on ('click', function (event) {
deleteLink (li);
})
.appendTo(editSpan);
$('<span>').addClass('ui-icon')
.addClass('ui-icon-trash')
.html(' ')
.appendTo(deleteSpan);
li.appendTo ($("#ulLinkSort"));
// Refresh the list
$("#ulLinkSort").sortable ('refresh');
// Empty the form
$("#frmLink input[name='title']").val ('');
$("#frmLink input[name='description']").val ('');
$("#frmLink input[name='visible_link']").val ('');
$("#frmLink input[name='full_link']").val ('');
showSuccess ("#frmLink .upload-valid");
// Re-bind events
bindEvents();
}
else {
alert ('Unable to save link.\r\nMySQL Error Message: ' +
data.err_msg);
}
},
error: function () {
alert ('An unknown error has occurred');
}
});
});
$("#btnSaveLinks").on ('click', function (event) {
// Build the ordered array
var ordering = new Array ();
var index = 0;
$("#ulLinkSort").find ('li').each (function () {
ordering[index++] = $(this).find ('span.sortable-hidden-id').html ();
});
// Send it to the server
$.ajax ({
url: 'ajax/saveLinkOrdering.php',
method: 'POST',
data: {
orderings: ordering
},
dataType: 'json',
success: function (data) {
if (data.success) {
showSuccess ("#spnLinkSortResult");
}
else {
alert ('Unable to save ordering.\r\nMySQL Error Message: ' +
data.err_msg);
showError ("#spnLinkSortResult");
}
},
error: function () {
alert ('An unknown error has occurred.');
}
});
});
$(".action-delete-link").on ('click', function (event) {
deleteLink ($(this).closest ("li"));
});
// Events for the presentation page
$("#btnSavePresentationFooter").on ('click', function (event) {
saveContentPage ('txaPresentationFooter', 'presentations_footer', 'spnContentPresentationFooterResult');
});
// Events for content page save buttons
$("#btnSaveEvents").on ('click', function (event) {
saveContentPage ('txaEvents', 'events', 'spnContentEventsResult');
});
$("#btnSaveAbout").on ('click', function (event) {
saveContentPage ('txaAbout', 'about', 'spnContentAboutResult');
});
$("#btnSaveContact").on ('click', function (event) {
saveContentPage ('txaContact', 'contact', 'spnContentContactResult');
});
// Edit event for the cron page
$(".cron-edit").on ('click', function (event) {
var row = $(this).closest ("tr");
if (g_cron === undefined) { // ui-icon-circle-check
g_cron = {
'row': row,
'id': row.find ("td.name").html ()
};
var schedule = row.find ("td.schedule").html ();
row.find ("td.schedule").html ('<input type="text" value="' + schedule + '" />');
var enabled = row.find ("td.enabled").html ();
row.find ("td.enabled").html ('<select><option value="Yes">Yes</option><option value="No">No</option></select>');
row.find ("td.enabled select").val (enabled);
g_cron.schedule = schedule;
g_cron.enabled = enabled;
$(this).find ("span").removeClass ('ui-icon-pencil');
$(this).find ("span").addClass ('ui-icon-circle-check');
}
else if (row.find ("td.name").html () === g_cron.id) {
var name = g_cron.id;
var schedule = g_cron.row.find ("td.schedule input").val ();
var enabled = g_cron.row.find ("td.enabled select").val () === 'Yes' ? 1 : 0;
$.ajax ({
url: 'ajax/updateCron.php',
type: 'POST',
data: {
'name': name,
'schedule': schedule,
'enabled': enabled
},
dataType: 'json',
success: function (data) {
if (data.success) {
g_cron.row.find ("td.schedule").html (g_cron.row.find ("td.schedule input").val ());
g_cron.row.find ("td.enabled").html (g_cron.row.find ("td.enabled select").val ());
g_cron.row.find ("td.actions ul li.edit span").removeClass ('ui-icon-circle-check');
g_cron.row.find ("td.actions ul li.edit span").addClass ('ui-icon-pencil');
g_cron = undefined;
}
else {
alert ('Unable to make changes.\r\nError message: ' +
data.err_msg);
}
},
error: function () {
alert ('An unknown error has occurred.');
},
cache: false
});
}
else {
g_cron.row.find ("td.schedule").html (g_cron.schedule);
g_cron.row.find ("td.enabled").html (g_cron.enabled);
g_cron.row.find ("td.actions ul li.edit span").removeClass ('ui-icon-circle-check');
g_cron.row.find ("td.actions ul li.edit span").addClass ('ui-icon-pencil');
g_cron = undefined;
$(this).click ();
}
});
}
/**
* Upload a file from one of the forms on the page to the server.
*
* @param formID {String} DOM ID for form to upload from
* @param ulID {String} DOM ID for sort list to add item to
* @param divPrgID {String} DOM ID for DIV around progress bar
*/
function uploadFile (formID, ulID, divPrgID) {
$.ajax ({
url: 'ajax/fileUpload.php',
type: 'POST',
data: new FormData ($("#" + formID)[0]),
dataType: 'json',
success: function (data) {
$("#" + divPrgID).hide ();
if (data.success) {
var li = $('<li>').addClass ('ui-state-default');
if (data.type === 'image') {
var div = $('<div>').css ('vertical-align', 'center')
.css ('margin-left', 'auto')
.css ('margin-right', 'auto')
.appendTo (li);
$('<span>').addClass ('sortable-hidden-id')
.addClass ('hidden')
.html (data.id)
.appendTo (div);
$('<img>').attr ('src', data.base_url + data.path)
.attr ('alt', data.title)
.css ('width', data.thumb_width)
.css ('height', data.thumb_height)
.appendTo ($('<div>').addClass ('img')
.appendTo (div));
$('<div>').addClass ('caption')
.html (data.desc)
.appendTo (div);
}
else {
$('<span>').addClass ('sortable-hidden-id')
.addClass ('hidden')
.html (data.id)
.appendTo (li);
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-arrowthick-2-n-s')
.appendTo (li);
$('<span>').addClass ('ui-icon')
.addClass ((data.type === 'link' ? 'ui-icon-link' : 'ui-icon-document'))
.attr ('title', (data.type === 'link' ? 'Link' : 'Document'))
.appendTo (li);
$('<span>').addClass ('sortable-doc-title')
.html (data.title)
.appendTo (li);
var spn = $('<span>').addClass ('sortable-doc-edit')
.appendTo (li);
var ul = $('<ul>').addClass ('icons-edit-buttons')
.addClass ('ui-widget')
.addClass ('ui-helper-clearfix')
.appendTo (spn);
/*$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-pencil')
.appendTo ($('<li>').addClass ('edit')
.addClass ('ui-state-default')
.addClass ('ui-corner-all')
.attr ('title', 'Edit')
.appendTo (ul));*/
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-trash')
.appendTo ($('<li>').addClass ('doc-trash')
.addClass ('ui-state-default')
.addClass ('ui-corner-all')
.attr ('title', 'Delete')
.appendTo (ul));
}
li.appendTo ($("#" + ulID));
$("#" + ulID).sortable ('refresh');
$("#" + formID + " input[name='title']").val ('');
$("#" + formID + " input[name='description']").val ('');
$("#" + formID + " input[type='file']").val ('');
setIconHover ();
bindIconEvents ();
showSuccess ("#" + formID + " .upload-valid");
}
else {
alert ('Unable to upload file.\r\nPHP Error code: ' +
data.err_php +
'\r\nMySQL Error Msg: ' +
data.err_mysql);
showError ("#" + formID + " .upload-valid");
}
},
error: function () {
alert ('An unknown error has occurred.');
},
cache: false,
contentType: false,
processData: false
});
}
/**
*
*/
function uploadLink (formID, ulID) {
$.ajax ({
url: 'ajax/saveResourceLink.php',
type: 'POST',
data: new FormData ($("#" + formID)[0]),
dataType: 'json',
success: function (data) {
if (data.success) {
var li = $('<li>').addClass ('ui-state-default');
$('<span>').addClass ('sortable-hidden-id')
.addClass ('hidden')
.html (data.id)
.appendTo (li);
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-arrowthick-2-n-s')
.appendTo (li);
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-link')
.appendTo (li);
$('<span>').addClass ('sortable-doc-title')
.html (data.title)
.appendTo (li);
var spn = $('<span>').addClass ('sortable-doc-edit')
.appendTo (li);
var ul = $('<ul>').addClass ('icons-edit-buttons')
.addClass ('ui-widget')
.addClass ('ui-helper-clearfix')
.appendTo (spn);
/*$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-pencil')
.appendTo ($('<li>').addClass ('edit')
.addClass ('ui-state-default')
.addClass ('ui-corner-all')
.attr ('title', 'Edit')
.appendTo (ul));*/
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-trash')
.appendTo ($('<li>').addClass ('doc-trash')
.addClass ('ui-state-default')
.addClass ('ui-corner-all')
.attr ('title', 'Delete')
.appendTo (ul));
li.appendTo ($("#" + ulID));
$("#" + ulID).sortable ('refresh');
$("#" + formID + " input[name='title']").val ('');
$("#" + formID + " input[name='description']").val ('');
$("#" + formID + " input[name='link']").val ('');
setIconHover ();
bindIconEvents ();
showSuccess ("#" + formID + " .upload-valid");
}
else {
alert ('Unable to save link.\r\nMySQL Error Msg: ' +
data.err_mysql);
showError ("#" + formID + " .upload-valid");
}
},
error: function () {
alert ('An unknown error has occurred.');
},
cache: false,
contentType: false,
processData: false
});
}
/**
* Iterate over the designated sortable UL and take note of the ordering of the
* resources. Transmit the potentially new ordering to the server.
*
* @param ulID {String} DOM ID for UL to store ordering of
* @param rsltSpnID {String} DOM ID for span to show result in
*/
function saveResourceOrdering (ulID, rsltSpnID) {
// Build the ordered array
var ordering = new Array ();
var index = 0;
$("#" + ulID).find ('li').each (function () {
ordering[index++] = $(this).find ('span.sortable-hidden-id').html ();
});
// Send it to the server
$.ajax ({
url: 'ajax/saveResourceOrdering.php',
method: 'POST',
data: {
orderings: ordering
},
dataType: 'json',
success: function (data) {
if (data.success) {
showSuccess ("#" + rsltSpnID);
}
else {
alert ('Unable to save ordering.\r\nMySQL Error Message: ' +
data.err_msg);
showError ("#" + rsltSpnID);
}
},
error: function () {
alert ('An unknown error has occurred.');
}
});
}
/**
* Render the list of sortable document resources.
*
* @param ulID {String} DOM ID for UL to render ordering in
* @param data {Array<Object>} Resource objects to render
*/
function renderDocumentOrReportSortable (ulID, data) {
// Clear the set
$("#" + ulID).find ('li').remove ();
// Iterate and build the group
$.each (data, function (id, obj) {
var li = $('<li>').addClass ('ui-state-default');
$('<span>').addClass ('sortable-hidden-id')
.addClass ('hidden')
.html (id)
.appendTo (li);
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-arrowthick-2-n-s')
.appendTo (li);
$('<span>').addClass ('ui-icon')
.addClass ((obj.type === 'link' ? 'ui-icon-link' : 'ui-icon-document'))
.attr ('title', (obj.type === 'link' ? 'Link' : 'Document'))
.appendTo (li);
$('<span>').addClass ('sortable-doc-title')
.html (obj.title)
.appendTo (li);
var spn = $('<span>').addClass ('sortable-doc-edit')
.appendTo (li);
var ul = $('<ul>').addClass ('icons-edit-buttons')
.addClass ('ui-widget')
.addClass ('ui-helper-clearfix')
.appendTo (spn);
/*$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-pencil')
.appendTo ($('<li>').addClass ('edit')
.addClass ('ui-state-default')
.addClass ('ui-corner-all')
.attr ('title', 'Edit')
.appendTo (ul));*/
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-trash')
.appendTo ($('<li>').addClass ('doc-trash')
.addClass ('ui-state-default')
.addClass ('ui-corner-all')
.attr ('title', 'Delete')
.appendTo (ul));
li.appendTo ($("#" + ulID));
});
// Refresh
$("#" + ulID).sortable ('refresh');
setIconHover ();
bindIconEvents ();
}
/**
* Render the grid of sortable image resources.
*
* @param ulID {String} DOM ID for UL to render ordering in
* @param data {Array<Object>} Image objects to render
* @param baseURL {String} Path to prepend to image repository path
*/
function renderImageSortable (ulID, data, baseURL) {
// Clear the set
$("#" + ulID).find ('li').remove ();
// Iterate and build the group
$.each (data, function (id, obj) {
var li = $('<li>').addClass ('ui-state-default');
var div = $('<div>').css ('vertical-align', 'center')
.css ('margin-left', 'auto')
.css ('margin-right', 'auto')
.appendTo (li);
$('<span>').addClass ('sortable-hidden-id')
.addClass ('hidden')
.html (id)
.appendTo (div);
$('<img>').attr ('src', baseURL + obj.path)
.attr ('alt', obj.title)
.css ('width', obj.thumb_width)
.css ('height', obj.thumb_height)
.appendTo ($('<div>').addClass ('img')
.appendTo (div));
$('<div>').addClass ('caption')
.html (obj.desc)
.appendTo (div);
var divDel = $('<div>').addClass ('op-icons')
.appendTo (div);
var spn = $('<span>').addClass ('image-trash-wrapper')
.addClass ('ui-widget')
.addClass ('ui-helper-clearfix')
.appendTo (divDel);
var spnInner = $('<span>').addClass ('image-trash')
.addClass ('ui-state-default')
.addClass ('ui-corner-all')
.appendTo (spn);
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-trash')
.appendTo (spnInner);
/*var ul = $('<ul>').addClass ('icons-edit-buttons')
.addClass ('ui-widget')
.addClass ('ui-helper-clearfix')
.appendTo (spn);
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-pencil')
.appendTo ($('<li>').addClass ('edit')
.addClass ('ui-state-default')
.addClass ('ui-corner-all')
.attr ('title', 'Edit')
.appendTo (ul));
$('<span>').addClass ('ui-icon')
.addClass ('ui-icon-trash')
.appendTo ($('<li>').addClass ('image-trash')
.addClass ('ui-state-default')
.addClass ('ui-corner-all')
.attr ('title', 'Delete')
.appendTo (ul));*/
li.appendTo ($("#" + ulID));
});
// Refresh
$("#" + ulID).sortable ('refresh');
setIconHover ();
bindIconEvents ();
}
/**
* Save static page content.
*
* @param txaID {String} DOM ID for editor field with content
* @param contentType {String} Type of content being saved
* @param spnID {String} DOM ID for element to show success/error
*/
function saveContentPage (txaID, contentType, spnID) {
$.ajax ({
url: 'ajax/saveContent.php',
method: 'POST',
data: {
type: contentType,
html: $("#" + txaID).val ()
},
dataType: 'json',
success: function (data) {
if (data.success) {
showSuccess ("#" + spnID);
}
else {
alert ('An unknown error has occurred.');
showError ("#" + spnID);
}
},
error: function () {
alert ('An unknown error has occurred.');
showError ("#" + spnID);
}
});
}
/**
* Set events to handle icon hovering correctly.
*/
function setIconHover () {
$(".icons-edit-buttons li").mouseenter (function () { $(this).addClass ("ui-state-hover"); })
.mouseleave (function () { $(this).removeClass ("ui-state-hover"); });
$(".op-icons .image-trash").mouseenter (function () { $(this).addClass ("ui-state-hover"); })
.mouseleave (function () { $(this).removeClass ("ui-state-hover"); });
}
/**
* Bind events for handling icon events (clicks).
*/
function bindIconEvents () {
$(".doc-trash").off ('click');
$(".doc-trash").on ('click', function (event) {
var hold_scope = $(this);
$.ajax ({
url: 'ajax/deleteResource.php',
method: 'POST',
data: {
id: $(this).parent ().parent ().parent ().find ('.sortable-hidden-id').first ().html ()
},
dataType: 'json',
success: function (data) {
if (data.success) {
var id = hold_scope.parent ().parent ().closest ('ul').attr ('id');
hold_scope.parent ().parent ().parent ().remove ();
$("#" + id).sortable ('refresh');
}
else {
alert ('A MySQL error occurred: ' + data.err_msg);
}
},
error: function () {
alert ('An unknown error has occurred.');
}
});
});
$(".image-trash").off ('click');
$(".image-trash").on ('click', function (event) {
var hold_scope = $(this);
$.ajax ({
url: 'ajax/deleteResource.php',
method: 'POST',
data: {
id: $(this).parent ().parent ().parent ().find ('.sortable-hidden-id').first ().html ()
},
dataType: 'json',
success: function (data) {
if (data.success) {
var id = hold_scope.parent ().parent ().parent ().closest ('ul').attr ('id');
hold_scope.parent ().parent ().parent ().parent ().remove ();
$("#" + id).sortable ('refresh');
}
else {
alert ('A MySQL error occurred: ' + data.err_msg);
}
},
error: function () {
alert ('An unknown error has occurred.');
}
});
});
}
/**
* Handle the click event for deleting a website link.
*
* @param li (jQuery object) List element that was clicked to delete
*/
function deleteLink (li) {
var link_id = $(li).find(".sortable-hidden-id").html();
$.ajax ({
url: 'ajax/deleteLink.php',
method: 'POST',
data: {
id: link_id
},
dataType: 'json',
success: function(data) {
if (data.success) {
// Remove the entry and refresh the list
$(li).remove();
$("#ulLinkSort").sortable ('refresh');
}
else {
alert ('Unable to delete link.\r\nMySQL Error Message: ' +
data.err_msg);
}
},
error: function () {
alert ('An unknown error has occurred.');
}
});
}
/**
* Show the success indicator (check mark) inside a DOM element.
*
* @param selector {String} jQuery selector for DOM element to show indicator
* within
*/
function showSuccess (selector) {
$(selector).css ('display', 'inline-block');
$(selector).removeClass ('inputError');
$(selector).addClass ('inputValid');
timeOutResult (selector);
}
/**
* Show the error indicator (red x) inside a DOM element.
*
* @param selector {String} jQuery selector for DOM element to show indicator
* within
*/
function showError (selector) {
$(selector).css ('display', 'inline-block');
$(selector).removeClass ('inputValid');
$(selector).addClass ('inputError');
timeOutResult (selector);
}
/**
* Time out the result indicator (success or error).
*
* @param selector {String} jQuery selector for DOM element to clear
*/
function timeOutResult (selector) {
setTimeout (function () {
$(selector).fadeOut (600, function () {
$(selector).removeClass ('inputValid');
$(selector).removeClass ('inputError');
});
}, 3000);
} |
var a00140 =
[
[ "atcacert_date_dec", "a00840.html#ga368d038c02673b1e6ddacfd175786e6a", null ],
[ "atcacert_date_dec_compcert", "a00840.html#gaba31331bcfab203c786004b027512fab", null ],
[ "atcacert_date_dec_iso8601_sep", "a00840.html#ga3ff21be0f011ce56dfde5e2ac99e17ce", null ],
[ "atcacert_date_dec_posix_uint32_be", "a00840.html#ga37893ca05c0e3ccbcec3725228b8a818", null ],
[ "atcacert_date_dec_posix_uint32_le", "a00840.html#gab5bbaaf84f1c19409ee276241e9e2f6d", null ],
[ "atcacert_date_dec_rfc5280_gen", "a00840.html#gadd219151c074c3ec7785d68741a1cae1", null ],
[ "atcacert_date_dec_rfc5280_utc", "a00840.html#ga7fa37d88f9405a3557110e58468f9e6e", null ],
[ "atcacert_date_enc", "a00840.html#gaab946b2ea5dba6d1addacc995a6989ae", null ],
[ "atcacert_date_enc_compcert", "a00840.html#ga5da5a0589a6168aafd34b4aac4e07553", null ],
[ "atcacert_date_enc_iso8601_sep", "a00840.html#gae40aeb71d824e8bbe3233e86f3fb6a3f", null ],
[ "atcacert_date_enc_posix_uint32_be", "a00840.html#ga1160e4293d7831e15a47e7b3f47013ca", null ],
[ "atcacert_date_enc_posix_uint32_le", "a00840.html#ga4825cb7a817fa9471cfe30a1aa984b8f", null ],
[ "atcacert_date_enc_rfc5280_gen", "a00840.html#gaaeb955dfc5b73719e2ecca542c2fc249", null ],
[ "atcacert_date_enc_rfc5280_utc", "a00840.html#gaa83e2f3a3f83b321dade6cd3211136db", null ],
[ "atcacert_date_get_max_date", "a00840.html#ga1d267b06c94e1db2aa2f6e91df1c843f", null ],
[ "ATCACERT_DATE_FORMAT_SIZES", "a00840.html#ga8b93faeabd399250750a5ed9401d897e", null ]
]; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.