repo
stringlengths
5
106
file_url
stringlengths
78
301
file_path
stringlengths
4
211
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:56:49
2026-01-05 02:23:25
truncated
bool
2 classes
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/chart-tristate.js
public/admin/plugins/jquery-sparkline/src/chart-tristate.js
/** * Tristate charts */ $.fn.sparkline.tristate = tristate = createClass($.fn.sparkline._base, barHighlightMixin, { type: 'tristate', init: function (el, values, options, width, height) { var barWidth = parseInt(options.get('barWidth'), 10), barSpacing = p...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/rangemap.js
public/admin/plugins/jquery-sparkline/src/rangemap.js
$.RangeMapClass = RangeMap = createClass({ init: function (map) { var key, range, rangelist = []; for (key in map) { if (map.hasOwnProperty(key) && typeof key === 'string' && key.indexOf(':') > -1) { range = key.split(':'); rang...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/chart-line.js
public/admin/plugins/jquery-sparkline/src/chart-line.js
/** * Line charts */ $.fn.sparkline.line = line = createClass($.fn.sparkline._base, { type: 'line', init: function (el, values, options, width, height) { line._super.init.call(this, el, values, options, width, height); this.vertices = []; this.regio...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/base.js
public/admin/plugins/jquery-sparkline/src/base.js
initStyles = function() { addCSS(defaultStyles); }; $(initStyles); pending = []; $.fn.sparkline = function (userValues, userOptions) { return this.each(function () { var options = new $.fn.sparkline.options(this, userOptions), $this = $(this), ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/chart-bar.js
public/admin/plugins/jquery-sparkline/src/chart-bar.js
/** * Bar charts */ $.fn.sparkline.bar = bar = createClass($.fn.sparkline._base, barHighlightMixin, { type: 'bar', init: function (el, values, options, width, height) { var barWidth = parseInt(options.get('barWidth'), 10), barSpacing = parseInt(options.get(...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/interact.js
public/admin/plugins/jquery-sparkline/src/interact.js
MouseHandler = createClass({ init: function (el, options) { var $el = $(el); this.$el = $el; this.options = options; this.currentPageX = 0; this.currentPageY = 0; this.el = el; this.splist = []; this.tooltip = nu...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/vcanvas-canvas.js
public/admin/plugins/jquery-sparkline/src/vcanvas-canvas.js
VCanvas_canvas = createClass(VCanvas_base, { init: function (width, height, target, interact) { VCanvas_canvas._super.init.call(this, width, height, target); this.canvas = document.createElement('canvas'); if (target[0]) { target = target[0]; }...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/chart-pie.js
public/admin/plugins/jquery-sparkline/src/chart-pie.js
/** * Pie charts */ $.fn.sparkline.pie = pie = createClass($.fn.sparkline._base, { type: 'pie', init: function (el, values, options, width, height) { var total = 0, i; pie._super.init.call(this, el, values, options, width, height); this.shapes = {...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/defaults.js
public/admin/plugins/jquery-sparkline/src/defaults.js
/** * Default configuration settings */ getDefaults = function () { return { // Settings common to most/all chart types common: { type: 'line', lineColor: '#00f', fillColor: '#cdf', defaultPixelsPerValue: 3...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/vcanvas-vml.js
public/admin/plugins/jquery-sparkline/src/vcanvas-vml.js
VCanvas_vml = createClass(VCanvas_base, { init: function (width, height, target) { var groupel; VCanvas_vml._super.init.call(this, width, height, target); if (target[0]) { target = target[0]; } $.data(target, '_jqs_vcanvas', this); ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/chart-bullet.js
public/admin/plugins/jquery-sparkline/src/chart-bullet.js
/** * Bullet charts */ $.fn.sparkline.bullet = bullet = createClass($.fn.sparkline._base, { type: 'bullet', init: function (el, values, options, width, height) { var min, max, vals; bullet._super.init.call(this, el, values, options, width, height); ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/vcanvas-base.js
public/admin/plugins/jquery-sparkline/src/vcanvas-base.js
// Setup a very simple "virtual canvas" to make drawing the few shapes we need easier // This is accessible as $(foo).simpledraw() VShape = createClass({ init: function (target, id, type, args) { this.target = target; this.id = id; this.type = type; t...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/simpledraw.js
public/admin/plugins/jquery-sparkline/src/simpledraw.js
// Provide a cross-browser interface to a few simple drawing primitives $.fn.simpledraw = function (width, height, useExisting, interact) { var target, mhandler; if (useExisting && (target = this.data('_jqs_vcanvas'))) { return target; } if ($.fn.sparkline.canvas ===...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/footer.js
public/admin/plugins/jquery-sparkline/src/footer.js
}))}(document, Math));
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/utils.js
public/admin/plugins/jquery-sparkline/src/utils.js
/** * Utilities */ createClass = function (/* [baseclass, [mixin, ...]], definition */) { var Class, args; Class = function () { this.init.apply(this, arguments); }; if (arguments.length > 1) { if (arguments[0]) { Class.prototype...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery-sparkline/src/chart-discrete.js
public/admin/plugins/jquery-sparkline/src/chart-discrete.js
/** * Discrete charts */ $.fn.sparkline.discrete = discrete = createClass($.fn.sparkline._base, barHighlightMixin, { type: 'discrete', init: function (el, values, options, width, height) { discrete._super.init.call(this, el, values, options, width, height); th...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery/jquery.min.js
public/admin/plugins/jquery/jquery.min.js
/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license */ !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,fu...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/jquery/jquery.js
public/admin/plugins/jquery/jquery.js
/*! * jQuery JavaScript Library v1.12.4 * http://jquery.com/ * * Includes Sizzle.js * http://sizzlejs.com/ * * Copyright jQuery Foundation and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2016-05-20T17:17Z */ (function( global, factory ) { if ( typeof module =...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.colorhelpers.js
public/admin/plugins/flot-charts/jquery.colorhelpers.js
/* Plugin for jQuery for working with colors. * * Version 1.1. * * Inspiration from jQuery color animation plugin by John Resig. * * Released under the MIT license by Ole Laursen, October 2009. * * Examples: * * $.color.parse("#fff").scale('rgb', 0.25).add('a', -0.5).toString() * var c = $.color.extrac...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.crosshair.js
public/admin/plugins/flot-charts/jquery.flot.crosshair.js
/* Flot plugin for showing crosshairs when the mouse hovers over the plot. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The plugin supports these options: crosshair: { mode: null or "x" or "y" or "xy" color: color lineWidth: number } Set the mode to one of "x", "y" or "xy". ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/excanvas.min.js
public/admin/plugins/flot-charts/excanvas.min.js
if(!document.createElement("canvas").getContext){(function(){var ab=Math;var n=ab.round;var l=ab.sin;var A=ab.cos;var H=ab.abs;var N=ab.sqrt;var d=10;var f=d/2;var z=+navigator.userAgent.match(/MSIE ([\d.]+)?/)[1];function y(){return this.context_||(this.context_=new D(this))}var t=Array.prototype.slice;function g(j,m,...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.selection.js
public/admin/plugins/flot-charts/jquery.flot.selection.js
/* Flot plugin for selecting regions of a plot. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The plugin supports these options: selection: { mode: null or "x" or "y" or "xy", color: color, shape: "round" or "miter" or "bevel", minSize: number of pixels } Selection support is ena...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.errorbars.js
public/admin/plugins/flot-charts/jquery.flot.errorbars.js
/* Flot plugin for plotting error bars. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. Error bars are used to show standard deviation and other statistical properties in a plot. * Created by Rui Pereira - rui (dot) pereira (at) gmail (dot) com This plugin allows you to plot error-ba...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/excanvas.js
public/admin/plugins/flot-charts/excanvas.js
// Copyright 2006 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in wr...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.resize.js
public/admin/plugins/flot-charts/jquery.flot.resize.js
/* Flot plugin for automatically redrawing plots as the placeholder resizes. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. It works by listening for changes on the placeholder div (through the jQuery resize event plugin) - if the size changes, it will redraw the plot. There are no opt...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.js
public/admin/plugins/flot-charts/jquery.flot.js
/* Javascript plotting library for jQuery, version 0.8.3. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. */ // first an inline dependency, jquery.colorhelpers.js, we inline it here // for convenience /* Plugin for jQuery for working with colors. * * Version 1.1. * * Inspiration fr...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.symbol.js
public/admin/plugins/flot-charts/jquery.flot.symbol.js
/* Flot plugin that adds some extra symbols for plotting points. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The symbols are accessed as strings through the standard symbol options: series: { points: { symbol: "square" // or "diamond", "triangle", "cross" } } */ (function...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.time.js
public/admin/plugins/flot-charts/jquery.flot.time.js
/* Pretty handling of time axes. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. Set axis.mode to "time" to enable. See the section "Time series data" in API.txt for details. */ (function($) { var options = { xaxis: { timezone: null, // "browser" for local to the client or time...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.categories.js
public/admin/plugins/flot-charts/jquery.flot.categories.js
/* Flot plugin for plotting textual data or categories. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. Consider a dataset like [["February", 34], ["March", 20], ...]. This plugin allows you to plot such a dataset directly. To enable it, you must specify mode: "categories" on the axis w...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.navigate.js
public/admin/plugins/flot-charts/jquery.flot.navigate.js
/* Flot plugin for adding the ability to pan and zoom the plot. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The default behaviour is double click and scrollwheel up/down to zoom in, drag to pan. The plugin defines plot.zoom({ center }), plot.zoomOut() and plot.pan( offset ) so you ea...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.fillbetween.js
public/admin/plugins/flot-charts/jquery.flot.fillbetween.js
/* Flot plugin for computing bottoms for filled line and bar charts. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The case: you've got two series that you want to fill the area between. In Flot terms, you need to use one as the fill bottom of the other. You can specify the bottom of e...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.pie.js
public/admin/plugins/flot-charts/jquery.flot.pie.js
/* Flot plugin for rendering pie charts. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The plugin assumes that each series has a single data value, and that each value is a positive integer or zero. Negative numbers don't make sense for a pie chart, and have unpredictable results. Th...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.js
public/admin/plugins/flot-charts/jquery.js
/*! * jQuery JavaScript Library v1.8.3 * http://jquery.com/ * * Includes Sizzle.js * http://sizzlejs.com/ * * Copyright 2012 jQuery Foundation and other contributors * Released under the MIT license * http://jquery.org/license * * Date: Tue Nov 13 2012 08:20:33 GMT-0500 (Eastern Standard Time) */ (function(...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.stack.js
public/admin/plugins/flot-charts/jquery.flot.stack.js
/* Flot plugin for stacking data sets rather than overlyaing them. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The plugin assumes the data is sorted on x (or y if stacking horizontally). For line charts, it is assumed that if a line has an undefined gap (from a null point), then the ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.image.js
public/admin/plugins/flot-charts/jquery.flot.image.js
/* Flot plugin for plotting images. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The data syntax is [ [ image, x1, y1, x2, y2 ], ... ] where (x1, y1) and (x2, y2) are where you intend the two opposite corners of the image to end up in the plot. Image must be a fully loaded Javascript ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.threshold.js
public/admin/plugins/flot-charts/jquery.flot.threshold.js
/* Flot plugin for thresholding data. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The plugin supports these options: series: { threshold: { below: number color: colorspec } } It can also be applied to a single series, like this: $.plot( $("#placeholder"), [{ data: [...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/flot-charts/jquery.flot.canvas.js
public/admin/plugins/flot-charts/jquery.flot.canvas.js
/* Flot plugin for drawing all elements of a plot on the canvas. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. Flot normally produces certain elements, like axis labels and the legend, using HTML elements. This permits greater interactivity and customization, and often looks better, du...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/bootstrap-material-datetimepicker/js/bootstrap-material-datetimepicker.js
public/admin/plugins/bootstrap-material-datetimepicker/js/bootstrap-material-datetimepicker.js
(function ($, moment) { var pluginName = "bootstrapMaterialDatePicker"; var pluginDataName = "plugin_" + pluginName; moment.locale('en'); function Plugin(element, options) { this.currentView = 0; this.minDate; this.maxDate; this._attachedEvents = []; this.element = elem...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/plugins/multi-select/js/jquery.multi-select.js
public/admin/plugins/multi-select/js/jquery.multi-select.js
/* * MultiSelect v0.9.12 * Copyright (c) 2012 Louis Cuny * * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar....
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/jquery.min.js
public/admin/js/jquery.min.js
/*! jQuery v1.12.0 | (c) jQuery Foundation | jquery.org/license */ !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,fu...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/demo.js
public/admin/js/demo.js
$(function () { skinChanger(); activateNotificationAndTasksScroll(); setSkinListHeightAndScroll(); setSettingListHeightAndScroll(); $(window).resize(function () { setSkinListHeightAndScroll(); setSettingListHeightAndScroll(); }); }); //Skin changer function skinChanger() { ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/admin.js
public/admin/js/admin.js
if (typeof jQuery === "undefined") { throw new Error("jQuery plugins need to be before this file"); } $.AdminBSB = {}; $.AdminBSB.options = { colors: { red: '#F44336', pink: '#E91E63', purple: '#9C27B0', deepPurple: '#673AB7', indigo: '#3F51B5', blue: '#2196F3', ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/jquery-ui.min.js
public/admin/js/jquery-ui.min.js
/*! jQuery UI - v1.11.4 - 2015-03-11 * http://jqueryui.com * Includes: core.js, widget.js, mouse.js, position.js, accordion.js, autocomplete.js, button.js, datepicker.js, dialog.js, draggable.js, droppable.js, effect.js, effect-blind.js, effect-bounce.js, effect-clip.js, effect-drop.js, effect-explode.js, effect-fade...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/script.js
public/admin/js/script.js

javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/jquery.dataTables.min.js
public/admin/js/jquery.dataTables.min.js
/*! DataTables 1.10.13 ©2008-2016 SpryMedia Ltd - datatables.net/license */ (function(h){"function"===typeof define&&define.amd?define(["jquery"],function(E){return h(E,window,document)}):"object"===typeof exports?module.exports=function(E,H){E||(E=window);H||(H="undefined"!==typeof window?require("jquery"):require...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/search.js
public/admin/js/search.js
(function($, window, document, undefined) { $.fn.quicksearch = function (target, opt) { var timeout, cache, rowcache, jq_results, val = '', e = this, options = $.extend({ delay: 100, selector: null, stripeRows: null, loader: null, noResults: '', ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/helpers.js
public/admin/js/helpers.js
function hexToRgb(hexCode) { var patt = /^#([\da-fA-F]{2})([\da-fA-F]{2})([\da-fA-F]{2})$/; var matches = patt.exec(hexCode); var rgb = "rgb(" + parseInt(matches[1], 16) + "," + parseInt(matches[2], 16) + "," + parseInt(matches[3], 16) + ")"; return rgb; } function hexToRgba(hexCode, opacity) { va...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/index.js
public/admin/js/pages/index.js
$(function () { //Widgets count $('.count-to').countTo(); //Sales count to $('.sales-count-to').countTo({ formatter: function (value, options) { return '$' + value.toFixed(2).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, ' ').replace('.', ','); } }); initRealTimeChart(); ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/charts/flot.js
public/admin/js/pages/charts/flot.js
var data = [], totalPoints = 110; var updateInterval = 320; var realtime = 'on'; $(function () { //Real time ========================================================================================== var plot = $.plot('#real_time_chart', [getRandomData()], { series: { shadowSize: 0, ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/charts/sparkline.js
public/admin/js/pages/charts/sparkline.js
$(function () { $(".sparkline").each(function () { var $this = $(this); $this.sparkline('html', $this.data()); }); $('.sparkline-pie').sparkline('html', { type: 'pie', offset: 90, width: '150px', height: '150px', sliceColors: ['#E91E63', '#00BCD4', '#...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/charts/jquery-knob.js
public/admin/js/pages/charts/jquery-knob.js
$(function () { $('.knob').knob({ draw: function () { // "tron" case if (this.$.data('skin') == 'tron') { var a = this.angle(this.cv) // Angle , sa = this.startAngle // Previous start angle , sat = this.startAngle ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/charts/morris.js
public/admin/js/pages/charts/morris.js
$(function () { getMorris('line', 'line_chart'); getMorris('bar', 'bar_chart'); getMorris('area', 'area_chart'); getMorris('donut', 'donut_chart'); }); function getMorris(type, element) { if (type === 'line') { Morris.Line({ element: element, data: [{ ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/charts/chartjs.js
public/admin/js/pages/charts/chartjs.js
$(function () { new Chart(document.getElementById("line_chart").getContext("2d"), getChartJs('line')); new Chart(document.getElementById("bar_chart").getContext("2d"), getChartJs('bar')); new Chart(document.getElementById("radar_chart").getContext("2d"), getChartJs('radar')); new Chart(document.getEleme...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/medias/image-gallery.js
public/admin/js/pages/medias/image-gallery.js
$(function () { $('#aniimated-thumbnials').lightGallery({ thumbnail: true, selector: 'a' }); });
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/cards/basic.js
public/admin/js/pages/cards/basic.js
$(function () { initLoading(); }); //Init Loading function initLoading() { $('[data-toggle="cardloading"]').on('click', function () { var effect = $(this).data('loadingEffect'); var $loading = $(this).parents('.card').waitMe({ effect: effect, text: 'Loading...', ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/cards/colored.js
public/admin/js/pages/cards/colored.js
$(function () { initLoading(); }); //Init Loading function initLoading() { $('[data-toggle="cardloading"]').on('click', function () { var effect = $(this).data('loadingEffect'); var color = $.AdminBSB.options.colors[$(this).data('loadingColor')]; var $loading = $(this).parents('.card'...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/forms/form-validation.js
public/admin/js/pages/forms/form-validation.js
$(function () { $('#form_validation').validate({ rules: { 'checkbox': { required: true }, 'gender': { required: true } }, highlight: function (input) { $(input).parents('.form-line').addClass('error')...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/forms/basic-form-elements.js
public/admin/js/pages/forms/basic-form-elements.js
$(function () { //Textare auto growth autosize($('textarea.auto-growth')); //Datetimepicker plugin $('.datetimepicker').bootstrapMaterialDatePicker({ format: 'dddd DD MMMM YYYY - HH:mm', clearButton: true, weekStart: 1 }); $('.datepicker').bootstrapMaterialDatePicker({ ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/forms/form-wizard.js
public/admin/js/pages/forms/form-wizard.js
$(function () { //Horizontal form basic $('#wizard_horizontal').steps({ headerTag: 'h2', bodyTag: 'section', transitionEffect: 'slideLeft', onInit: function (event, currentIndex) { setButtonWavesEffect(event); }, onStepChanged: function (event, current...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/forms/advanced-form-elements.js
public/admin/js/pages/forms/advanced-form-elements.js
$(function () { $('.colorpicker').colorpicker(); //Dropzone Dropzone.options.frmFileUpload = { paramName: "file", maxFilesize: 2 }; //Masked Input ============================================================================================================================ var $d...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/forms/editors.js
public/admin/js/pages/forms/editors.js
$(function () { //CKEditor CKEDITOR.replace('ckeditor'); CKEDITOR.config.height = 300; //TinyMCE tinymce.init({ selector: "textarea#tinymce", theme: "modern", height: 300, plugins: [ 'advlist autolink lists link image charmap print preview hr anchor pageb...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/widgets/infobox/infobox-4.js
public/admin/js/pages/widgets/infobox/infobox-4.js
$(function () { initCounters(); initCharts(); }); //Widgets count plugin function initCounters() { $('.count-to').countTo(); } //Charts function initCharts() { //Chart Bar $('.chart.chart-bar:not(.reverse)').sparkline(undefined, { type: 'bar', barColor: 'rgba(0, 0, 0, 0.15)', ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/widgets/infobox/infobox-2.js
public/admin/js/pages/widgets/infobox/infobox-2.js
$(function () { initCounters(); initCharts(); }); //Widgets count plugin function initCounters() { $('.count-to').countTo(); } //Charts function initCharts() { //Chart Bar $('.chart.chart-bar').sparkline(undefined, { type: 'bar', barColor: '#fff', negBarColor: '#fff', ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/widgets/infobox/infobox-3.js
public/admin/js/pages/widgets/infobox/infobox-3.js
$(function () { initCounters(); initCharts(); }); //Widgets count plugin function initCounters() { $('.count-to').countTo(); } //Charts function initCharts() { //Chart Bar $('.chart.chart-bar').sparkline(undefined, { type: 'bar', barColor: '#fff', negBarColor: '#fff', ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/widgets/infobox/infobox-1.js
public/admin/js/pages/widgets/infobox/infobox-1.js
$(function () { initCounters(); initCharts(); }); //Widgets count plugin function initCounters() { $('.count-to').countTo(); } //Charts function initCharts() { //Chart Bar $('.chart.chart-bar').sparkline(undefined, { type: 'bar', barColor: '#fff', negBarColor: '#fff', ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/widgets/infobox/infobox-5.js
public/admin/js/pages/widgets/infobox/infobox-5.js
$(function () { initCounters(); initCharts(); }); //Widgets count plugin function initCounters() { $('.count-to').countTo(); } //Charts function initCharts() { //Chart Bar $.each($('.chart.chart-bar'), function (i, key) { var chartColor = $.AdminBSB.options.colors[$(key).data('chartcolor'...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/maps/jvectormap.js
public/admin/js/pages/maps/jvectormap.js
$(function () { $('#world-map-markers').vectorMap({ map: 'world_mill_en', normalizeFunction: 'polynomial', hoverOpacity: 0.7, hoverColor: false, backgroundColor: 'transparent', regionStyle: { initial: { fill: 'rgba(210, 214, 222, 1)', ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/maps/google.js
public/admin/js/pages/maps/google.js
$(function () { //Basic Map var basicMap = new GMaps({ el: '#gmap_basic_example', lat: -12.043333, lng: -77.028333 }); //Markers var markers = new GMaps({ div: '#gmap_markers', lat: -12.043333, lng: -77.028333 }); markers.addMarker({ l...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/examples/sign-up.js
public/admin/js/pages/examples/sign-up.js
$(function () { $('#sign_up').validate({ rules: { 'terms': { required: true }, 'confirm': { equalTo: '[name="password"]' } }, highlight: function (input) { console.log(input); $(input).par...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/examples/forgot-password.js
public/admin/js/pages/examples/forgot-password.js
$(function () { $('#forgot_password').validate({ highlight: function (input) { console.log(input); $(input).parents('.form-line').addClass('error'); }, unhighlight: function (input) { $(input).parents('.form-line').removeClass('error'); }, ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/examples/sign-in.js
public/admin/js/pages/examples/sign-in.js
$(function () { $('#sign_in').validate({ highlight: function (input) { console.log(input); $(input).parents('.form-line').addClass('error'); }, unhighlight: function (input) { $(input).parents('.form-line').removeClass('error'); }, errorPla...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/tables/editable-table.js
public/admin/js/pages/tables/editable-table.js
$(function () { $('#mainTable').editableTableWidget(); });
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/tables/jquery-datatable.js
public/admin/js/pages/tables/jquery-datatable.js
$(function () { $('.js-basic-example').DataTable(); //Exportable table $('.js-exportable').DataTable({ dom: 'Bfrtip', buttons: [ 'copy', 'csv', 'excel', 'pdf', 'print' ] }); });
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/ui/sortable-nestable.js
public/admin/js/pages/ui/sortable-nestable.js
$(function () { $('.dd').nestable(); $('.dd').on('change', function () { var $this = $(this); var serializedData = window.JSON.stringify($($this).nestable('serialize')); $this.parents('div.body').find('textarea').val(serializedData); }); });
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/ui/tooltips-popovers.js
public/admin/js/pages/ui/tooltips-popovers.js
$(function () { //Tooltip $('[data-toggle="tooltip"]').tooltip({ container: 'body' }); //Popover $('[data-toggle="popover"]').popover(); })
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/ui/modals.js
public/admin/js/pages/ui/modals.js
$(function () { $('.js-modal-buttons .btn').on('click', function () { var color = $(this).data('color'); $('#mdModal .modal-content').removeAttr('class').addClass('modal-content modal-col-' + color); $('#mdModal').modal('show'); }); });
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/ui/notifications.js
public/admin/js/pages/ui/notifications.js
$(function () { $('.jsdemo-notification-button button').on('click', function () { var placementFrom = $(this).data('placement-from'); var placementAlign = $(this).data('placement-align'); var animateEnter = $(this).data('animate-enter'); var animateExit = $(this).data('animate-exit')...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/ui/range-sliders.js
public/admin/js/pages/ui/range-sliders.js
$(function () { //Taken from http://ionden.com/a/plugins/ion.rangeSlider/demo.html $("#range_01").ionRangeSlider(); $("#range_02").ionRangeSlider({ min: 100, max: 1000, from: 550 }); $("#range_03").ionRangeSlider({ type: "double", grid: true, min: 0...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/ui/animations.js
public/admin/js/pages/ui/animations.js
$(function () { $('.js-animations').bind('change', function () { var animation = $(this).val(); $('.js-animating-object').animateCss(animation); }); }); //Copied from https://github.com/daneden/animate.css $.fn.extend({ animateCss: function (animationName) { var animationEnd = 'webk...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/admin/js/pages/ui/dialogs.js
public/admin/js/pages/ui/dialogs.js
$(function () { $('.js-sweetalert button').on('click', function () { var type = $(this).data('type'); if (type === 'basic') { showBasicMessage(); } else if (type === 'with-title') { showWithTitleMessage(); } else if (type === 'success') { ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/js/map.js
public/js/map.js
var map, infoWindow, latInput = $('#lat'); lngInput = $('#lng'); function initMap() { if (lngInput.val() == '' && latInput.val() == '') { map = new google.maps.Map(document.getElementById('map'), { center: {lat: -34.397, lng: 150.644}, zoom: 15 }); var marker = new...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/js/fontawesome-iconpicker.min.js
public/js/fontawesome-iconpicker.min.js
!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){a.ui=a.ui||{};a.ui.version="1.12.1";!function(){function b(a,b,c){return[parseFloat(a[0])*(l.test(a[0])?b/100:1),parseFloat(a[1])*(l.test(a[1])?c/100:1)]}function c(b,c){return parseInt(a.css(b,c),10)||0}function d(b){var c=b...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/js/moment.js
public/js/moment.js
//! moment.js //! version : 2.20.1 //! authors : Tim Wood, Iskren Chernev, Moment.js contributors //! license : MIT //! momentjs.com ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/js/showMap.js
public/js/showMap.js
function showMap() { if ($("#showMap").length != 0) { var pos = { lat: $("#showMap").data('lat'), lng: $("#showMap").data('lng') } map = new google.maps.Map(document.getElementById('showMap'), { center: pos, zoom: 15 }); var mar...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/js/select2.min.js
public/js/select2.min.js
/*! Select2 4.0.6-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&module.exports?module.exports=function(b,c){return void 0===c&&(c="undefined"!=typeof window?require("jquery"):require("jquery")(b)),a(c),...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/js/app.js
public/js/app.js
!function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,e),i.l=!0,i.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/js/sweetalert.min.js
public/js/sweetalert.min.js
!function(e,t,n){"use strict";!function o(e,t,n){function a(s,l){if(!t[s]){if(!e[s]){var i="function"==typeof require&&require;if(!l&&i)return i(s,!0);if(r)return r(s,!0);var u=new Error("Cannot find module '"+s+"'");throw u.code="MODULE_NOT_FOUND",u}var c=t[s]={exports:{}};e[s][0].call(c.exports,function(t){var n=e[s]...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/js/bootstrap-datetimepicker.js
public/js/bootstrap-datetimepicker.js
/*! version : 4.17.47 ========================================================= bootstrap-datetimejs https://github.com/Eonasdan/bootstrap-datetimepicker Copyright (c) 2015 Jonathan Peterson ========================================================= */ /* The MIT License (MIT) Copyright (c) 2015 Jonathan Peters...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/source/gulpfile.js
public/docs/source/gulpfile.js
var elixir = require('laravel-elixir'); require('laravel-elixir-stylus'); var gulp = require('gulp'); var shell = require('gulp-shell'); var Task = elixir.Task; var path = require('path'); /*s |-------------------------------------------------------------------------- | Elixir Asset Management |--------------------...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/source/assets/js/script.js
public/docs/source/assets/js/script.js
; /* Copyright 2016 Marcel Pociot Copyright 2008-2013 Concur Technologies, 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...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/source/assets/js/lib/jquery.min.js
public/docs/source/assets/js/lib/jquery.min.js
/*! jQuery v2.1.3 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof windo...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/source/assets/js/lib/highlight.min.js
public/docs/source/assets/js/lib/highlight.min.js
/*! highlight.js v9.1.0 | BSD3 License | git.io/hljslicense */
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/source/assets/js/lib/jquery_ui.js
public/docs/source/assets/js/lib/jquery_ui.js
/*! jQuery UI - v1.11.3 - 2015-02-12 * http://jqueryui.com * Includes: widget.js * Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */ (function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define([ "jquery" ], factory ); ...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/source/assets/js/lib/jquery.highlight.js
public/docs/source/assets/js/lib/jquery.highlight.js
/* * jQuery Highlight plugin * * Based on highlight v3 by Johann Burkard * http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html * * Code a little bit refactored and cleaned (in my humble opinion). * Most important changes: * - has an option to highlight o...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/source/assets/js/lib/jquery.tocify.js
public/docs/source/assets/js/lib/jquery.tocify.js
/* jquery Tocify - v1.8.0 - 2013-09-16 * http://www.gregfranko.com/jquery.tocify.js/ * Copyright (c) 2013 Greg Franko; Licensed MIT * Modified lightly by Robert Lord to fix a bug I found, * and also so it adds ids to headers * also because I want height caching, since the * height lookup for h1s and h2s was causing ser...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/source/assets/js/lib/lunr.js
public/docs/source/assets/js/lib/lunr.js
/** * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.5.7 * Copyright (C) 2014 Oliver Nightingale * MIT Licensed * @license */ (function(){ /** * Convenience function for instantiating a new lunr index and configuring it * with the default pipeline functions and the pas...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/source/assets/js/lib/energize.js
public/docs/source/assets/js/lib/energize.js
/** * energize.js v0.1.0 * * Speeds up click events on mobile devices. * https://github.com/davidcalhoun/energize.js */ (function() { // Sandbox /** * Don't add to non-touch devices, which don't need to be sped up */ if(!('ontouchstart' in window)) return; var lastClick = {}, isThresholdReache...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/source/assets/js/lib/imagesloaded.min.js
public/docs/source/assets/js/lib/imagesloaded.min.js
/*! * imagesLoaded PACKAGED v3.1.8 * JavaScript is all like "You images are done yet or what?" * MIT License */ (function(){function e(){}function t(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function n(e){return function(){return this[e].apply(this,arguments)}}var i=e.prototype,r=this,o=r...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/public/docs/js/all.js
public/docs/js/all.js
!function(){if("ontouchstart"in window){var e,t,n,r,i,o,s={};e=function(e,t){return Math.abs(e[0]-t[0])>5||Math.abs(e[1]-t[1])>5},t=function(e){this.startXY=[e.touches[0].clientX,e.touches[0].clientY],this.threshold=!1},n=function(t){return this.threshold?!1:void(this.threshold=e(this.startXY,[t.touches[0].clientX,t.to...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
true
zizohassan/laraflat
https://github.com/zizohassan/laraflat/blob/f17dbf66c5f6f5844998dd8bf45e4b4d91f41890/resources/assets/js/app.js
resources/assets/js/app.js
/** * First we will load all of this project's JavaScript dependencies which * includes Vue and other libraries. It is a great starting point when * building robust, powerful web applications using Vue and Laravel. */ require('./bootstrap'); /** * Next, we will create a fresh Vue application instance and attach...
javascript
MIT
f17dbf66c5f6f5844998dd8bf45e4b4d91f41890
2026-01-05T03:38:40.536480Z
false