Skip to content

Instantly share code, notes, and snippets.

@MichalBryxi
Created June 5, 2016 09:43
Show Gist options
  • Save MichalBryxi/de1b584a5d8d570d4c159cab6bbc1893 to your computer and use it in GitHub Desktop.
Save MichalBryxi/de1b584a5d8d570d4c159cab6bbc1893 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
data: [
{
src: 'http://placekitten.com/g/600/400',
w: 600,
h: 400,
title: 'whooa',
msrc: '(optional) larger image'
}
]
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
{{#photo-swipe items=data as |img|}}
<img class="thumb" src={{img.src}} alt={{img.title}}>
{{/photo-swipe}}
{
"version": "0.8.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.5.1",
"ember-data": "2.5.2",
"ember-template-compiler": "2.5.1"
"ember-cli-photoswipe": "1.2.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment