Keep in mind that this implementation requires an api for fetching data, and assumes the following response schema:
{
"perPageOptions": [
15, 50, 100
],
"actions": [
"Delete all", "Publish All", "Unpublish All"
],
{ | |
// Disable telemetry | |
"telemetry.telemetryLevel": "off", | |
// Zen mode | |
"zenMode.fullScreen": false, | |
"zenMode.hideTabs": true, | |
"zenMode.centerLayout": false, | |
// Theming | |
"workbench.iconTheme": "city-lights-icons-vsc", | |
"editor.fontFamily": "Dank Mono", |
Keep in mind that this implementation requires an api for fetching data, and assumes the following response schema:
{
"perPageOptions": [
15, 50, 100
],
"actions": [
"Delete all", "Publish All", "Unpublish All"
],
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
chunkArray(arr, n) { | |
return arr.length ? [arr.slice(0, n), ...this.chunkArray(arr.slice(n), n)] : []; | |
}, |
chunkArray(arr, n) { | |
return arr.length ? [arr.slice(0, n), ...this.chunkArray(arr.slice(n), n)] : []; | |
}, |
<h1 class="intro">Table with fluid height and width fixed header, footer and first column using position:sticky </h1> | |
<p class="intro">This example uses position:sticky on the th elements in the thead, tfoot and left column to achieve the fixed effect. Browsers that don't support position:sticky will just get a normal table so no harm done. Resize browser smaller to see fixed first column.</p> | |
<div id="table-scroll" class="table-scroll"> | |
<table id="main-table" class="main-table"> | |
<thead> | |
<tr> | |
<th scope="col">Header 1</th> | |
<th scope="col">Header 2</th> | |
<th scope="col">Header 3 with longer content</th> | |
<th scope="col">Header 4 text</th> |
/* eslint-disable no-var */ | |
var path = require('path'); | |
var autoprefixer = require('autoprefixer'); | |
const MATCH_ALL_NON_RELATIVE_IMPORTS = /^\w.*$/i; | |
module.exports = [{ | |
output: { | |
filename: '[name].js', | |
library: 'atrium-react-plugin-beta', |
<?php | |
namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
class GoogleDriveServiceProvider extends ServiceProvider | |
{ | |
/** | |
* Bootstrap the application services. |
(function ($) { | |
'use strict'; | |
var pr1 = pr1 || {}; | |
pr1 = { | |
init: function () { | |
} | |
}; |