Skip to content

Instantly share code, notes, and snippets.

@adriatic
Created April 19, 2016 13:10
Show Gist options
  • Select an option

  • Save adriatic/c080296bcaef4e9dc4ccbbae570da14c to your computer and use it in GitHub Desktop.

Select an option

Save adriatic/c080296bcaef4e9dc4ccbbae570da14c to your computer and use it in GitHub Desktop.

Revisions

  1. Nikolaj Ivancic created this gist Apr 19, 2016.
    1 change: 1 addition & 0 deletions app.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    <!-- app.html -->
    1 change: 1 addition & 0 deletions app.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    //
    21 changes: 21 additions & 0 deletions index.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    <!doctype html>
    <html>
    <head>
    <title>Aurelia KendoUI bridge</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.common.min.css">
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.rtl.min.css">
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.default.min.css">
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.mobile.all.min.css">
    <script src="https://kendo.cdn.telerik.com/2016.1.226/js/jszip.min.js"></script>
    </head>
    <body aurelia-app="main">
    <h1>Loading...</h1>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.6/system.js"></script>
    <script src="https://rawgit.com/aurelia-ui-toolkits/aurelia-kendoui-bundles/0.3.5/config2.js"></script>
    <script>
    System.import('aurelia-bootstrapper');
    </script>
    </body>
    </html>
    8 changes: 8 additions & 0 deletions main.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    export function configure(aurelia) {
    aurelia.use
    .standardConfiguration()
    .developmentLogging()
    .plugin('aurelia-kendoui-bridge', kendo => kendo.pro());

    aurelia.start().then(a => a.setRoot());
    }