Falko

Results 22 comments of Falko

@kagant15 do you by chance have some example code on how to do that, I'm trying to do the same for a project of mine.

@kagant15 awesome! You are my hero of the day.

I discovered the same problem, it is because `.directive('slideable',` calls `var contents = element.html();` but element is in this case an array.

I ended up using this code ``` app.directive('slideToggle', function() { 'use strict'; return { restrict: 'A', scope: { isOpen: '=slideToggle' // 'data-slide-toggle' in our html }, link: function(scope, element, attr)...

here is a list of all functions of the MatrixClient class I found it a bit difficult to discover all functions without an index, so I created one new MatrixClient(opts)...

@theilgaard can you please share how you wrote your client using e2e with this sdk? I would really appreciate it.

I managed to unblock uBlock by creating the symlinks for `piwik.(js|php) and changing pwik.js ``` "action_name= ``` to ``` "a=b&action_name= ``` no need to rename variables @arnowelzel @bdore @londonuk371

What also might work is creating a symlink like ``` mkdir foo ln -s piwik.php foo/index.php ``` then point the tracking script to `/foo`, no need to mess with routes

I also feel that jumping from https://matrix.org/docs/spec/r0.0.0/client_server.html to https://matrix-org.github.io/matrix-js-sdk/0.10.8/module-client-MatrixClient.html and back it's often difficult to figure out what exactly I have to listen to and then how to use the...