This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".overlayLink").bind("mouseenter mouseleave",function(e){ | |
/** the width and height of the current div **/ | |
var w = $(this).width(); | |
var h = $(this).height(); | |
/** calculate the x and y to get an angle to the center of the div from that x and y. **/ | |
/** gets the x value relative to the center of the DIV and "normalize" it **/ | |
var x = (e.pageX - this.offsetLeft - (w/2)) * ( w > h ? (h/w) : 1 ); | |
var y = (e.pageY - this.offsetTop - (h/2)) * ( h > w ? (w/h) : 1 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://dimplejs.org/dist/dimple.v2.1.6.min.js"></script> | |
<style id="jsbin-css"> | |
.dimple-example { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App; | |
use Illuminate\Database\Eloquent\Model; | |
class Article extends Model | |
{ | |
protected $fillable = ['name', 'content']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Providers; | |
use Illuminate\Support\Collection; | |
use Illuminate\Pagination\LengthAwarePaginator; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
public function boot() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
According to docs (https://craftcms.com/docs/templating/eager-loading-elements), | |
this is how you Eager-Load Nested Sets of Elements | |
#} | |
{% set entries = craft.entries({ | |
section: 'news', | |
with: [ | |
'entriesField.assetsField' | |
] |