Skip to content

Instantly share code, notes, and snippets.

@alexander-alvarez
Created March 3, 2017 01:45
Show Gist options
  • Save alexander-alvarez/c04089ff252c750d81529fdf1114ef72 to your computer and use it in GitHub Desktop.
Save alexander-alvarez/c04089ff252c750d81529fdf1114ef72 to your computer and use it in GitHub Desktop.
Set Scroll Position
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{scrollToY}}
<br>
<br>
<div style="height: 200px; width: 200px">
{{#ember-scrollable scrollToY=scrollToY onScroll=(action (mut scrollToY))}}
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
<div> test </div>
{{/ember-scrollable}}
</div>
<br>
<br>
{
"version": "0.11.0",
"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.10.2",
"ember-data": "2.11.0",
"ember-template-compiler": "2.10.2",
"ember-testing": "2.10.2"
},
"addons": {
"ember-scrollable": "*"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment