Skip to content

Instantly share code, notes, and snippets.

View martinbottanek's full-sized avatar
🎯
Focusing

Martin Botťánek martinbottanek

🎯
Focusing
View GitHub Profile
@martinbottanek
martinbottanek / dom-ready.js
Last active August 29, 2015 14:25
A dummy Ember.js component used to initialize Materialize CSS tooltip
import Ember from 'ember';
export default Ember.Component.extend({
didInsertElement: function () {
this._super();
Ember.$('.tooltipped').tooltip();
}
});
@martinbottanek
martinbottanek / Gruntfile.js
Last active August 29, 2015 14:25
Deploy Ember.js app to SFTP with Grunt.js
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
shell: {
build: {
command: 'ember build --environment=production'
}
},
sftp: {
deploy: {