This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import QtQuick 2.0 | |
| /** | |
| * adapted from StackOverflow: | |
| * http://stackoverflow.com/questions/26879266/make-toast-in-android-by-qml | |
| */ | |
| /** | |
| * @brief An Android-like timed message text in a box that self-destroys when finished if desired | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //= require chosen-jquery | |
| UiControls = window.UiControls || Ember.Namespace.create(); | |
| /** | |
| * Custom Multi-Select enabled with 'chosen' | |
| * @class | |
| * @memberOf UiControls | |
| * @extends Ember.Select | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //= require bootstrap-switch | |
| UiControls = window.UiControls || Ember.Namespace.create(); | |
| /** | |
| * Custom iPhone style ON-OFF switch control | |
| * | |
| * @class | |
| * @memberOf UiControls | |
| * @extends Ember.View |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |