Skip to content

Instantly share code, notes, and snippets.

@luizcarraro
Created October 1, 2019 22:45
Show Gist options
  • Select an option

  • Save luizcarraro/eaffd9a7d3932e04d8800d8158340f05 to your computer and use it in GitHub Desktop.

Select an option

Save luizcarraro/eaffd9a7d3932e04d8800d8158340f05 to your computer and use it in GitHub Desktop.

Revisions

  1. luizcarraro created this gist Oct 1, 2019.
    15 changes: 15 additions & 0 deletions framework7.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    /* global Framework7 */
    import { schedule } from '@ember/runloop';

    export function initialize() {
    return schedule('afterRender', function () {
    new Framework7({
    theme : 'md'
    });
    });
    }

    export default {
    name: 'framework7',
    initialize
    };