| Code | Title | Duration | Link |
|---|---|---|---|
| Keynote | Andy Jassy Keynote Announcement Recap | 0:01 | https://www.youtube.com/watch?v=TZCxKAM2GtQ |
| Keynote | AWS re:Invent 2016 Keynote: Andy Jassy | 2:22 | https://www.youtube.com/watch?v=8RrbUyw9uSg |
| Keynote | AWS re:Invent 2016 Keynote: Werner Vogels | 2:16 | https://www.youtube.com/watch?v=ZDScBNahsL4 |
| Keynote | [Tuesday Night Live with James Hamilton](h |
gfdsgfdsgdf
A Pen by Marc Teichtahl on CodePen.
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
| this.$palettes.on('hidden.bs.collapse', function (e) { | |
| var $this = $(this), | |
| $target = $(e.target), | |
| targetPage = $target.attr('id').slice(0, -6); | |
| var $i = $("span[itemprop=expandCollapseIcons] i", $(targetPage + "-panel")); | |
| if ($i.hasClass('icon-chevron-down')) { | |
| $i.removeClass('icon-chevron-down').addClass('icon-chevron-up'); | |
| } else { | |
| $i.removeClass('icon-chevron-up').addClass('icon-chevron-down'); |
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
| this.$palettes.on('hidden.bs.collapse', function (e) { | |
| var $this = $(this), | |
| $target = $(e.target); | |
| var $span = $("span[itemprop=expandCollapseIcons]"); | |
| var $i = $("span[itemprop=expandCollapseIcons] i"); | |
| // It's the $i who has class "icon-chevron-down" so | |
| if ($i.hasClass('icon-chevron-down')) { |
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
| <?php | |
| /** | |
| * # About Panel Widget View | |
| * | |
| * Displays the about panel in the designer palette. | |
| * | |
| * @var App $model the model the widget is for | |
| * @var ActiveForm $form the form containing this view | |
| * @var AboutFeature $feature the feature instance | |
| * @var AboutPanelWidget $this the widget rendering the 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
| initializePalettes: function () { | |
| this.$preview = $(".app-preview"); | |
| this.$palette = $("#app-palette"); | |
| this.$stylePalette = $("#style-palette"); | |
| this.$palettes = $("#app-palette,#style-palette"); | |
| this.$pageMarker = $("#currentPage"); | |
| this.id = this.$palette.data('id'); | |
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
| public function filters() | |
| { | |
| $filters = array(); | |
| return array_merge($filters,parent::filters()); | |
| } |
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
| /** | |
| * @return array default filters rules | |
| */ | |
| public function filters() | |
| { | |
| // This will cause the filter to be run on all actions | |
| return array( | |
| 'allowCrossOriginFilter' | |
| ); | |
| } |