Comparing version 0.0.5 to 0.0.6
@@ -117,5 +117,5 @@ /******/ (function(modules) { // webpackBootstrap | ||
var defaultMaxWidth = 1600; | ||
var defaultMaxWidth = window.kaytoMaxWidth || 1600; | ||
var lastGoodMaxWidth = defaultMaxWidth; | ||
var columns = 12; | ||
var columns = window.kaytoColumns || 12; | ||
var TYPE_DELAY = 250; | ||
@@ -122,0 +122,0 @@ |
@@ -5,3 +5,3 @@ // ==UserScript== | ||
// @namespace kayto | ||
// @version 0.0.5 | ||
// @version 0.0.6 | ||
// @grant none | ||
@@ -126,5 +126,5 @@ // ==/UserScript== | ||
var defaultMaxWidth = 1600; | ||
var defaultMaxWidth = window.kaytoMaxWidth || 1600; | ||
var lastGoodMaxWidth = defaultMaxWidth; | ||
var columns = 12; | ||
var columns = window.kaytoColumns || 12; | ||
var TYPE_DELAY = 250; | ||
@@ -131,0 +131,0 @@ |
{ | ||
"name": "kayto", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Your UI layout sidekick", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -5,1 +5,12 @@ # Kayto | ||
See installation and usage notes on [Github](https://dailyraisin.github.io/). | ||
Set the default max-width like so with Javscipt and CSS: | ||
```javascript | ||
//set to 1100px; | ||
window.kaytoMaxWidth = 1100; | ||
``` | ||
```css | ||
.kayto, .kayto-container { max-width: 1100px; } | ||
``` |
@@ -6,5 +6,5 @@ import dragNdrop from 'npm-dragndrop'; | ||
var defaultMaxWidth = 1600; | ||
var defaultMaxWidth = window.kaytoMaxWidth || 1600; | ||
var lastGoodMaxWidth = defaultMaxWidth; | ||
var columns = 12; | ||
var columns = window.kaytoColumns || 12; | ||
var TYPE_DELAY = 250; | ||
@@ -11,0 +11,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
65342
16