commit
stringlengths
40
40
old_file
stringlengths
7
120
new_file
stringlengths
7
120
old_contents
stringlengths
0
1.87k
new_contents
stringlengths
33
2.34k
subject
stringlengths
20
137
message
stringlengths
21
1.97k
lang
stringclasses
1 value
license
stringclasses
9 values
repos
stringlengths
10
20k
430bf07953b6c15936e73513980446eaf6b1f175
app/components/quickfile-nav/template.hbs
app/components/quickfile-nav/template.hbs
<nav class="navbar osf-project-navbar row" role="navigation"> <div class="container"> <div class=""> <ul class="nav navbar-nav"> <li class="{{if onQuickfiles 'active'}}"> <a href="/{{user.id}}/quickfiles/" class="project-title"> {{user.fullName}}'s Quick Files </a> </li> </ul> </div> </div> </nav>
<nav class="navbar osf-project-navbar row" role="navigation"> <div class="container"> <div class=""> <ul class="nav navbar-nav"> <li class="{{if onQuickfiles 'active'}}"> {{#link-to 'user-quickfiles' user class='project-title'}} {{user.fullName}}'s Quick Files {{/link-to}} </li> </ul> </div> </div> </nav>
Use link-to in nav to stay in Ember app
Use link-to in nav to stay in Ember app
Handlebars
apache-2.0
hmoco/ember-osf-web,hmoco/ember-osf-web,hmoco/ember-osf-web
e518a89041f1d3b550ddec3abe371aed9ce78eeb
app/components/user-selection/template.hbs
app/components/user-selection/template.hbs
{{yield (hash user = (component 'power-select' options = users disabled = disabled selected = user placeholder = 'Select user...' searchField = 'longName' tagName = 'div' class = 'user-select' onchange = (action on-change) extra = (hash selectedTemplate = selectedTemplate optionTemplate = optionTemplate ) ) )}}
{{yield (hash user = (component 'power-select' options = users disabled = disabled selected = user placeholder = 'Select user...' searchField = 'longName' tagName = 'div' class = 'user-select' allowClear = true onchange = (action on-change) extra = (hash selectedTemplate = selectedTemplate optionTemplate = optionTemplate ) ) )}}
Allow clearing of the user selection
Allow clearing of the user selection
Handlebars
agpl-3.0
anehx/timed-frontend,adfinis-sygroup/timed-frontend,adfinis-sygroup/timed-frontend,anehx/timed-frontend,adfinis-sygroup/timed-frontend
bbd377e0ca903c9247ac6cf4496d14249af7b62d
src/ChromeDevToolsGeneratorCLI/Templates/project.hbs
src/ChromeDevToolsGeneratorCLI/Templates/project.hbs
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>netcoreapp1.1</TargetFramework> <GeneratePackageOnBuild>true</GeneratePackageOnBuild> <Version>{{chromeVersion.BrowserVersion}}</Version> <Authors>Sean McLellan</Authors> <Company>BaristaLabs, LLC</Company> <RepositoryUrl>https://github.com/BaristaLabs/chrome-dev-tools-runtime.git</RepositoryUrl> <RepositoryType>Git</RepositoryType> <PackageTags>ChromeDevTools, .Net Core</PackageTags> <PackageLicenseUrl>https://raw.githubusercontent.com/BaristaLabs/chrome-dev-tools-runtime/master/LICENSE</PackageLicenseUrl> <Copyright>Copyright (c) 2017 BaristaLabs, LLC</Copyright> <PackageProjectUrl>https://github.com/BaristaLabs/chrome-dev-tools-runtime</PackageProjectUrl> <Description>.Net Core based runtime to interact with an running instance of Chrome via the ChromeDevTools protocol.</Description> <PackageReleaseNotes>Chrome Version: {{chromeVersion.BrowserVersion}}; Protocol Version: {{chromeVersion.ProtocolVersion}}; Runtime Version: {{runtimeVersion}};</PackageReleaseNotes> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.2" /> <PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> <PackageReference Include="WebSocket4Net" Version="0.15.0" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>netcoreapp1.1</TargetFramework> <GeneratePackageOnBuild>true</GeneratePackageOnBuild> <Version>{{chromeVersion.BrowserVersion}}{{#if runtimeVersion}}-{{runtimeVersion}}{{/if}}</Version> <Authors>Sean McLellan</Authors> <Company>BaristaLabs, LLC</Company> <RepositoryUrl>https://github.com/BaristaLabs/chrome-dev-tools-runtime.git</RepositoryUrl> <RepositoryType>Git</RepositoryType> <PackageTags>ChromeDevTools, .Net Core</PackageTags> <PackageLicenseUrl>https://raw.githubusercontent.com/BaristaLabs/chrome-dev-tools-runtime/master/LICENSE</PackageLicenseUrl> <Copyright>Copyright (c) 2017 BaristaLabs, LLC</Copyright> <PackageProjectUrl>https://github.com/BaristaLabs/chrome-dev-tools-runtime</PackageProjectUrl> <Description>.Net Core based runtime to interact with an running instance of Chrome via the ChromeDevTools protocol.</Description> <PackageReleaseNotes>Chrome Version: {{chromeVersion.BrowserVersion}}; Protocol Version: {{chromeVersion.ProtocolVersion}};{{#if runtimeVersion}} Runtime Version: {{runtimeVersion}};{{/if}}</PackageReleaseNotes> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.2" /> <PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> <PackageReference Include="WebSocket4Net" Version="0.15.0" /> </ItemGroup> </Project>
Update template to conditionally output runtime
Update template to conditionally output runtime
Handlebars
mit
BaristaLabs/chrome-dev-tools,BaristaLabs/chrome-dev-tools
f3e0f0f046b5e83e3f98449b3db69b8321a8396e
app/templates/components/programyear-header.hbs
app/templates/components/programyear-header.hbs
<div class='detail-header'> <span class='title'> {{#if programYear}} <h2>{{t 'programs.matriculationYear'}}: {{programYear.academicYear}}</h2> <h4>{{programYear.cohort.displayTitle}}</h4> {{/if}} </span> <span class ='actions'> {{#action-menu title=menuTitle icon=menuIcon classNameBindings='publicationStatus :publication-menu :programyear-publication-menu :right-edge'}} {{#if showAsIs}} <li class='danger' {{action 'publish'}}>{{t 'publish.publishAsIs'}}</li> {{/if}} {{#if showPublish}} <li class='good' {{action 'publish'}}>{{t 'publish.publishProgramYear'}}</li> {{/if}} {{#if showReview}} {{#link-to 'program.publicationCheck' programYear}} <li class='good' >{{t 'publish.reviewMissingItems' countBinding='programYear.allPublicationIssuesLength'}}</li> {{/link-to}} {{/if}} {{#if showTbd}} <li class='good' {{action 'publishAsTbd'}}>{{t 'publish.markAsScheduled'}}</li> {{/if}} {{#if showUnPublish}} <li class='danger' {{action 'unpublish'}}>{{t 'publish.unPublishProgramYear'}}</li> {{/if}} {{/action-menu}} </span> </div>
<div class='detail-header'> <span class='title'> {{#if programYear}} <h2>{{t 'programs.matriculationYear'}} {{programYear.academicYear}}</h2> <h4>{{programYear.cohort.displayTitle}}</h4> {{/if}} </span> <span class ='actions'> {{#action-menu title=menuTitle icon=menuIcon classNameBindings='publicationStatus :publication-menu :programyear-publication-menu :right-edge'}} {{#if showAsIs}} <li class='danger' {{action 'publish'}}>{{t 'publish.publishAsIs'}}</li> {{/if}} {{#if showPublish}} <li class='good' {{action 'publish'}}>{{t 'publish.publishProgramYear'}}</li> {{/if}} {{#if showReview}} {{#link-to 'program.publicationCheck' programYear}} <li class='good' >{{t 'publish.reviewMissingItems' countBinding='programYear.allPublicationIssuesLength'}}</li> {{/link-to}} {{/if}} {{#if showTbd}} <li class='good' {{action 'publishAsTbd'}}>{{t 'publish.markAsScheduled'}}</li> {{/if}} {{#if showUnPublish}} <li class='danger' {{action 'unpublish'}}>{{t 'publish.unPublishProgramYear'}}</li> {{/if}} {{/action-menu}} </span> </div>
Remove colon from program year header
Remove colon from program year header [skip ci]
Handlebars
mit
gboushey/frontend,thecoolestguy/frontend,djvoa12/frontend,ilios/frontend,jrjohnson/frontend,dartajax/frontend,dartajax/frontend,djvoa12/frontend,gboushey/frontend,stopfstedt/frontend,gabycampagna/frontend,gabycampagna/frontend,jrjohnson/frontend,ilios/frontend,thecoolestguy/frontend,stopfstedt/frontend
43d9e8e9fa53baceaa0691a93cbee4aabb594a9c
templates/actions.hbs
templates/actions.hbs
<div class="squatch-actions" data-referrals="{{referrals.length}}" {{#unless referredBy.dateReferred}} data-referredBy="0" {{/unless}} > <button data-open-panel="#squatch-stats-panel" class="btn btn-default {{#unless referrals}} {{#unless referredBy.dateReferred}} disabled {{/unless}} {{/unless}} "> {{#if referrals}} Show Details {{else}} {{#if referredBy.dateReferred}} Show Details {{else}} No Referrals Yet... {{/if}} {{/if}} </button> {{> attribution}} </div>
<div class="squatch-actions" data-referrals="{{referralsLength}}" {{#unless referredBy.dateReferred}} data-referredBy="0" {{/unless}} > <button data-open-panel="#squatch-stats-panel" class="btn btn-default {{#unless referrals}} {{#unless referredBy.dateReferred}} disabled {{/unless}} {{/unless}} "> {{#if referrals}} Show Details {{else}} {{#if referredBy.dateReferred}} Show Details {{else}} No Referrals Yet... {{/if}} {{/if}} </button> {{> attribution}} </div>
Use context variable instead of length property
Use context variable instead of length property
Handlebars
apache-2.0
saasquatch/percent-credit-theme,yupiq/test-percent-credit-theme,saasquatch/percent-credit-theme,yupiq/test-percent-credit-theme
4710fca36d53300bb931f4dc2c0ef58578ae1c67
app/views/templates/app-layout.hbs
app/views/templates/app-layout.hbs
<div class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">{{t "application.name"}}</a> </div> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li class="active"><a href="#">{{t "application.navigation.home"}}</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{t "application.navigation.virtualMachines.title"}}<b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="#searchVirtualMachine">{{t "application.navigation.virtualMachines.search"}}</a></li> <li><a href="#newVirtualMachine">{{t "application.navigation.virtualMachines.new"}}</a></li> </ul> </li> <li class=""><a href="#reference">{{t "application.navigation.reference"}}</a></li> </ul> </div> </div> </div> <div id="summary"></div> {{!-- Main content.--}} <div id="content" class="container"></div> <hr/> <div id="footer" class="container"></div>
<div class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">{{t "application.name"}}</a> </div> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li class="active"><a href="#">{{t "application.navigation.home"}}</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{t "application.navigation.virtualMachines.title"}}<b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="#searchVirtualMachine">{{t "application.navigation.virtualMachines.search"}}</a></li> <li><a href="#newVirtualMachine">{{t "application.navigation.virtualMachines.new"}}</a></li> </ul> </li> <li class=""><a href="#reference">{{t "application.navigation.reference"}}</a></li> </ul> </div> </div> </div> <div id="summary" class="container"></div> {{!-- Main content.--}} <div id="content" class="container"></div> <hr/> <div id="footer" class="container"></div>
Add a container class to the summary in order to be able to have a nicer error on screen.
Add a container class to the summary in order to be able to have a nicer error on screen.
Handlebars
mit
pierr/front-end-spa,KleeGroup/front-end-spa,KleeGroup/front-end-spa,pierr/front-end-spa
d0c20b11abe0e13facb73b2ad11f54c5be18397b
tests/dummy/app/templates/application.hbs
tests/dummy/app/templates/application.hbs
<h1 id="title">Ember Tooltips</h1> <h2>Other examples</h2> <ul> <li> {{#link-to 'tooltip-on-helper'}} Tooltips on <strong>helpers</strong> like component, view, link-to, etc {{/link-to}} </li> <li> {{#link-to 'tooltip-as-component'}} <strong>HTMLBars</strong> tooltips as <strong>components</strong> that render on their parent component {{/link-to}} </li> <li> {{#link-to 'tooltip-on-element'}} Tooltips set on <strong>elements</strong> using <strong>data attributes</strong> {{/link-to}} </li> </ul> {{outlet}}
<h1 id="title">Ember Tooltips</h1> <h2>Other examples</h2> <ul> <li> {{#link-to 'tooltip-on-helper'}} Tooltips on <strong>helpers</strong> like component, view, link-to, etc {{/link-to}} </li> <li> {{#link-to 'tooltip-as-component'}} <strong>HTMLBars</strong> tooltips as <strong>components</strong> that render on their parent component {{/link-to}} </li> <li> {{#link-to 'tooltip-on-element'}} Tooltips set on <strong>elements</strong> using <strong>data attributes</strong> {{/link-to}} </li> <li> {{#link-to 'tooltip-manual-trigger'}} Tooltips triggered <strong>manually</strong> by providing a <strong>boolean attribute</strong> {{/link-to}} </li> </ul> {{outlet}}
Add link to 'tooltip-manual-trigger' in app template
Add link to 'tooltip-manual-trigger' in app template
Handlebars
mit
kmiyashiro/ember-tooltips,maxhungry/ember-tooltips,kmiyashiro/ember-tooltips,sir-dunxalot/ember-tooltips,sir-dunxalot/ember-tooltips,maxhungry/ember-tooltips,zenefits/ember-tooltips,zenefits/ember-tooltips
dce95d85ea49d7410a69ebb043fe43e9d329f754
app/index/template.hbs
app/index/template.hbs
<h2>Legends</h2> <ul class="list-unstyled"> {{#each model as |legend|}} {{legend-tile legend=legend}} {{/each}} </ul>
<h2>Welcome to Traffic Tracker</h2> <h2>Legends</h2> <ul class="list-unstyled"> {{#each model as |legend|}} {{legend-tile legend=legend}} {{/each}} </ul>
Create Welcome Message Create welcome header in Index Template
Create Welcome Message Create welcome header in Index Template
Handlebars
mit
mwerumuchai/traffic-tracker,mwerumuchai/traffic-tracker
6da68a1cd5c5bed5a8a859cbe73e1b1f6f70b91f
app/templates/components/programyear-header.hbs
app/templates/components/programyear-header.hbs
<div class='detail-header'> <span class='title'> {{#if programYear}} <h2>{{t 'programs.matriculationYear'}}: {{programYear.academicYear}}</h2> <h4>{{programYear.cohort.displayTitle}}</h4> {{/if}} </span> <span class ='actions'> {{#action-menu title=menuTitle icon=menuIcon classNameBindings='publicationStatus :publication-menu :programyear-publication-menu :right-edge'}} {{#if showAsIs}} <li class='danger' {{action 'publish'}}>{{t 'publish.publishAsIs'}}</li> {{/if}} {{#if showPublish}} <li class='good' {{action 'publish'}}>{{t 'publish.publishProgramYear'}}</li> {{/if}} {{#if showReview}} {{#link-to 'program.publicationCheck' programYear}} <li class='good' >{{t 'publish.reviewMissingItems' countBinding='programYear.allPublicationIssuesLength'}}</li> {{/link-to}} {{/if}} {{#if showTbd}} <li class='good' {{action 'publishAsTbd'}}>{{t 'publish.markAsScheduled'}}</li> {{/if}} {{#if showUnPublish}} <li class='danger' {{action 'unpublish'}}>{{t 'publish.unPublishProgramYear'}}</li> {{/if}} {{/action-menu}} </span> </div>
<div class='detail-header'> <span class='title'> {{#if programYear}} <h2>{{t 'programs.matriculationYear'}} {{programYear.academicYear}}</h2> <h4>{{programYear.cohort.displayTitle}}</h4> {{/if}} </span> <span class ='actions'> {{#action-menu title=menuTitle icon=menuIcon classNameBindings='publicationStatus :publication-menu :programyear-publication-menu :right-edge'}} {{#if showAsIs}} <li class='danger' {{action 'publish'}}>{{t 'publish.publishAsIs'}}</li> {{/if}} {{#if showPublish}} <li class='good' {{action 'publish'}}>{{t 'publish.publishProgramYear'}}</li> {{/if}} {{#if showReview}} {{#link-to 'program.publicationCheck' programYear}} <li class='good' >{{t 'publish.reviewMissingItems' countBinding='programYear.allPublicationIssuesLength'}}</li> {{/link-to}} {{/if}} {{#if showTbd}} <li class='good' {{action 'publishAsTbd'}}>{{t 'publish.markAsScheduled'}}</li> {{/if}} {{#if showUnPublish}} <li class='danger' {{action 'unpublish'}}>{{t 'publish.unPublishProgramYear'}}</li> {{/if}} {{/action-menu}} </span> </div>
Remove colon from program year header
Remove colon from program year header [skip ci]
Handlebars
mit
gboushey/frontend,gboushey/frontend,thecoolestguy/frontend,gabycampagna/frontend,ilios/frontend,dartajax/frontend,stopfstedt/frontend,jrjohnson/frontend,djvoa12/frontend,djvoa12/frontend,ilios/frontend,thecoolestguy/frontend,stopfstedt/frontend,dartajax/frontend,jrjohnson/frontend,gabycampagna/frontend
7552100448ba6ecdba500aef92a6f9dc245376db
views/sign_in.handlebars
views/sign_in.handlebars
<div class="ui middle aligned center aligned grid"> <div class="column"> <h2 class="ui blue image header"> <div class="content"> Log-in to your account: </div> </h2> <div id="firebaseui-auth-container"></div> <!-- <form class="ui large form"> <div class="ui stacked segment"> <div class="field"> <div class="ui left icon input"> <i class="user icon"></i> <input type="text" name="email" placeholder="E-mail address"> </div> </div> <div class="field"> <div class="ui left icon input"> <i class="lock icon"></i> <input type="password" name="password" placeholder="Password"> </div> </div> <a href="/home"><div class="ui fluid large blue submit button">Login</div></a> </div> <div class="ui error message"></div> </form> <div class="ui message"> New to us? <a href="/sign_up">Sign Up</a> </div> --> </div> </div>
<div class="ui middle aligned center aligned grid"> <div class="column"> <h2 class="ui blue image header"> <div class="content"> Log-in to your account: </div> </h2> <!-- <div id="firebaseui-auth-container"></div> --> <form class="ui large form"> <div class="ui stacked segment"> <div class="field"> <div class="ui left icon input"> <i class="user icon"></i> <input type="text" name="email" placeholder="E-mail address"> </div> </div> <div class="field"> <div class="ui left icon input"> <i class="lock icon"></i> <input type="password" name="password" placeholder="Password"> </div> </div> <a href="/home"> <div class="ui fluid large blue submit button">Login</div> </a> </div> <div class="ui error message"></div> </form> <div class="ui message"> New to us? <a href="/sign_up">Sign Up</a> </div> </div> </div>
Put back fake login screen for A5
Put back fake login screen for A5
Handlebars
mit
jphung11/LifeBalance,jphung11/LifeBalance
85c45f5cb97354d7fa4566731762b4b38f581702
ui/app/templates/components/toolbar-link.hbs
ui/app/templates/components/toolbar-link.hbs
<LinkTo @class="toolbar-link" @params={{params}} @data-test-secret-edit={{data-test-secret-edit}} @data-test-secondary-add={{data-test-secondary-add}} @data-test-configure-link={{data-test-configure-link}} @data-test-alias-edit-link={{data-test-alias-edit-link}} @data-test-entity-merge-link={{data-test-entity-merge-link}} @data-test-backend-view-link={{data-test-backend-view-link}} @data-test-entity-create-link={{data-test-entity-create-link}} @data-test-policy-create-link={{data-test-policy-create-link}} @data-test-policy-edit-toggle={{data-test-policy-edit-toggle}} @data-test-secret-backend-configure={{data-test-secret-backend-configure}} > {{yield}} <ICon @glyph={{glyph}} @size=12 /> </LinkTo>
<LinkTo @class="toolbar-link" @params={{params}} @data-test-secret-edit={{data-test-secret-edit}} @data-test-secondary-add={{data-test-secondary-add}} @data-test-configure-link={{data-test-configure-link}} @data-test-alias-edit-link={{data-test-alias-edit-link}} @data-test-entity-edit-link={{data-test-entity-edit-link}} @data-test-entity-merge-link={{data-test-entity-merge-link}} @data-test-backend-view-link={{data-test-backend-view-link}} @data-test-entity-create-link={{data-test-entity-create-link}} @data-test-policy-create-link={{data-test-policy-create-link}} @data-test-policy-edit-toggle={{data-test-policy-edit-toggle}} @data-test-secret-backend-configure={{data-test-secret-backend-configure}} > {{yield}} <ICon @glyph={{glyph}} @size=12 /> </LinkTo>
Fix tests for toolbar links
Fix tests for toolbar links
Handlebars
mpl-2.0
hartsock/vault,joelthompson/vault,quixoten/vault,rnaveiras/vault,rnaveiras/vault,hashicorp/vault,kingland/vault,hashicorp/vault,kingland/vault,kingland/vault,hashicorp/vault,hartsock/vault,kingland/vault,joelthompson/vault,rnaveiras/vault,quixoten/vault,rnaveiras/vault,hashicorp/vault,hashicorp/vault,rnaveiras/vault,hartsock/vault,hartsock/vault,quixoten/vault,hartsock/vault,joelthompson/vault,kingland/vault,hashicorp/vault,joelthompson/vault,quixoten/vault
105c119d1787c121a667615c077bb41318baded8
layouts/drc/default.hbs
layouts/drc/default.hbs
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ envelope.title }}</title> <link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'> <!-- our styles: --> <link href="{{ envelope.assets.css_drc_url }}" rel="stylesheet" type='text/css'> </head> <body> {{{ common/header.hbs }}} {{{ envelope.body }}} {{{ common/footer.hbs }}} <script src="{{ envelope.assets.js_drc_url }}"></script> </body> </html>
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ envelope.title }}</title> <link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'> <!-- our styles: --> <link href="{{ envelope.assets.css_drc_url }}" rel="stylesheet" type='text/css'> </head> <body> {{{ drc/common/header.hbs }}} {{{ envelope.body }}} {{{ drc/common/footer.hbs }}} <script src="{{ envelope.assets.js_drc_url }}"></script> </body> </html>
Use full paths for embedded layouts.
Use full paths for embedded layouts.
Handlebars
apache-2.0
ktbartholomew/nexus-control,annegentle/nexus-control,carolynvs/nexus-control,ktbartholomew/nexus-control,ktbartholomew/nexus-control,smashwilson/nexus-control,rackerlabs/nexus-control,rackerlabs/nexus-control,meker12/nexus-control,smashwilson/deconst-drc-control,smashwilson/nexus-control,meker12/nexus-control,carolynvs/nexus-control,rackerlabs/nexus-control,meker12/nexus-control
6bbded49da69f85e9f0bcd391bce0f8ce4c0e94f
inc/head.hbs
inc/head.hbs
<meta name="viewport" content="width=device-width, initial-scale=1"> <!--[if lte IE 8]> <link rel="stylesheet" href="styles/oldie.css"> <![endif]--> <!--[if gt IE 8]><!--> <link rel="stylesheet" href="styles/master.css"> <!--<![endif]--> <script src="scripts/modernizr/modernizr.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="dns-prefetch" href="//ajax.googleapis.com"> <!--[if lte IE 8]> <link rel="stylesheet" href="styles/oldie.css"> <![endif]--> <!--[if gt IE 8]><!--> <link rel="stylesheet" href="styles/master.css"> <!--<![endif]--> <script src="scripts/modernizr/modernizr.js"></script>
Add DNS prefetch for Google APIs for preformance.
Add DNS prefetch for Google APIs for preformance.
Handlebars
mit
yellowled/yl-bp,yellowled/yl-bp
27b04cb7ed97f91b59304736a3a0f57c935aa262
static/templates/settings/custom_user_profile_field.hbs
static/templates/settings/custom_user_profile_field.hbs
<div class="user-name-section custom_user_field" name="{{ field.name }}" data-field-id="{{ field.id }}"> <label class="inline-block" for="{{ field.name }}" class="title">{{ field.name }}</label> <div class="alert-notification custom-field-status"></div> <div class="field"> {{#if is_long_text_field}} <textarea maxlength="500" class="custom_user_field_value">{{ field_value.value }}</textarea> {{else if is_select_field}} <select class="custom_user_field_value"> <option value=""></option> {{#each field_choices}} <option value="{{ this.value }}" {{#if this.selected}}selected{{/if}}>{{ this.text }}</option> {{/each}} </select> {{else if is_user_field }} <div class="pill-container person_picker"> <div class="input" contenteditable="true"></div> </div> {{else if is_date_field }} <input class="custom_user_field_value datepicker" data-field-id="{{ field.id }}" type="text" value="{{ field_value.value }}" /> <span class="remove_date"><i class="fa fa-close"></i></span> {{else}} <input class="custom_user_field_value" type="{{ field_type }}" value="{{ field_value.value }}" maxlength="50" /> {{/if}} </div> <div class="field_hint">{{ field.hint }}</div> </div>
<div class="user-name-section custom_user_field" name="{{ field.name }}" data-field-id="{{ field.id }}"> <label class="inline-block" for="{{ field.name }}" class="title">{{ field.name }}</label> <div class="alert-notification custom-field-status"></div> <div class="field_hint">{{ field.hint }}</div> <div class="field"> {{#if is_long_text_field}} <textarea maxlength="500" class="custom_user_field_value">{{ field_value.value }}</textarea> {{else if is_select_field}} <select class="custom_user_field_value"> <option value=""></option> {{#each field_choices}} <option value="{{ this.value }}" {{#if this.selected}}selected{{/if}}>{{ this.text }}</option> {{/each}} </select> {{else if is_user_field }} <div class="pill-container person_picker"> <div class="input" contenteditable="true"></div> </div> {{else if is_date_field }} <input class="custom_user_field_value datepicker" data-field-id="{{ field.id }}" type="text" value="{{ field_value.value }}" /> <span class="remove_date"><i class="fa fa-close"></i></span> {{else}} <input class="custom_user_field_value" type="{{ field_type }}" value="{{ field_value.value }}" maxlength="50" /> {{/if}} </div> </div>
Fix position of custom_profile_field hints.
settings: Fix position of custom_profile_field hints. These were confusing when placed below the input element.
Handlebars
apache-2.0
kou/zulip,andersk/zulip,punchagan/zulip,zulip/zulip,zulip/zulip,kou/zulip,punchagan/zulip,kou/zulip,rht/zulip,andersk/zulip,hackerkid/zulip,rht/zulip,kou/zulip,rht/zulip,eeshangarg/zulip,eeshangarg/zulip,zulip/zulip,eeshangarg/zulip,hackerkid/zulip,andersk/zulip,eeshangarg/zulip,andersk/zulip,punchagan/zulip,eeshangarg/zulip,rht/zulip,hackerkid/zulip,zulip/zulip,punchagan/zulip,hackerkid/zulip,rht/zulip,eeshangarg/zulip,zulip/zulip,punchagan/zulip,andersk/zulip,rht/zulip,kou/zulip,punchagan/zulip,hackerkid/zulip,andersk/zulip,zulip/zulip,punchagan/zulip,kou/zulip,kou/zulip,eeshangarg/zulip,andersk/zulip,rht/zulip,hackerkid/zulip,hackerkid/zulip,zulip/zulip
ac608b173201b47220bd283e5513d491a269b4f3
app/templates/toolbar.hbs
app/templates/toolbar.hbs
<div id="toolbar"> <div class="btn-group"> <button type="button" class="btn btn-default"><i class="fa fa-play"></i></button> <button type="button" class="btn btn-default"><i class="fa fa-stop"></i></button> <button type="button" class="btn btn-default"><i class="fa fa-pause"></i></button> <button type="button" class="btn btn-default"><i class="fa fa-circle"></i></button> </div> </div>
<div id="toolbar"> <div class="btn-group"> <button type="button" class="btn btn-default"><i class="fa fa-play"></i></button> <button type="button" class="btn btn-default"><i class="fa fa-stop"></i></button> <button type="button" class="btn btn-default"><i class="fa fa-pause"></i></button> <button type="button" class="btn btn-default" style="color:red;"><i class="fa fa-circle"></i></button> </div> <div class="btn-group"> <button type="button" class="btn btn-default"><i class="fa fa-fast-backward"></i></button> <button type="button" class="btn btn-default"><i class="fa fa-backward"></i></button> <button type="button" class="btn btn-default"><i class="fa fa-forward"></i></button> <button type="button" class="btn btn-default"><i class="fa fa-fast-forward"></i></button> </div> </div>
Add fast forward and rewind buttons to transport controls
Add fast forward and rewind buttons to transport controls
Handlebars
mit
liveband/liveband
50c8c7bfdd6fda988d9e75fab48387a9b02d43fd
app/templates/components/formgroup/form-group.hbs
app/templates/components/formgroup/form-group.hbs
{{#unless template}} {{#if label}} {{#if yieldInLabel}} {{#if labelWrapperClass}} <div class="{{labelWrapperClass}}"> {{partial 'components/formgroup/control-within-label'}} </div> {{else}} {{partial 'components/formgroup/control-within-label'}} {{/if}} {{else}} {{#if labelWrapperClass}} <div class="{{labelWrapperClass}}"> {{em-form-label text=label viewName=labelViewName}} {{#if addonIcon}} <span class="input-group-addon"><i class="fa fa-{{addonIcon}}"></i></span> {{/if}} {{partial 'components/formgroup/form-group-control'}} </div> {{else}} {{em-form-label text=label viewName=labelViewName}} {{partial 'components/formgroup/form-group-control'}} {{/if}} {{/if}} {{else}} {{partial 'components/formgroup/form-group-control'}} {{/if}} {{#if v_icons}} <span class="form-control-feedback"><i class="{{v_icon}}"></i></span> {{/if}} {{!Currently no errors when layout is inline}} {{#unless form.isInline}} {{#if canShowErrors}} {{em-form-control-help text=help viewName=helpViewName}} {{/if}} {{/unless}} {{else}} {{yield}} {{/unless}}
{{#unless template}} {{#if label}} {{#if yieldInLabel}} {{#if labelWrapperClass}} <div class="{{labelWrapperClass}}"> {{partial 'components/formgroup/control-within-label'}} </div> {{else}} {{partial 'components/formgroup/control-within-label'}} {{/if}} {{else}} {{#if labelWrapperClass}} <div class="{{labelWrapperClass}}"> {{em-form-label text=label viewName=labelViewName}} {{partial 'components/formgroup/form-group-control'}} </div> {{else}} {{em-form-label text=label viewName=labelViewName}} {{partial 'components/formgroup/form-group-control'}} {{/if}} {{/if}} {{else}} {{partial 'components/formgroup/form-group-control'}} {{/if}} {{#if v_icons}} <span class="form-control-feedback"><i class="{{v_icon}}"></i></span> {{/if}} {{!Currently no errors when layout is inline}} {{#unless form.isInline}} {{#if canShowErrors}} {{em-form-control-help text=help viewName=helpViewName}} {{/if}} {{/unless}} {{else}} {{yield}} {{/unless}}
Revert "add support for addon icon (requires FontAwesome)"
Revert "add support for addon icon (requires FontAwesome)" This reverts commit 7542e9d84d13d324abae28f4748115eb94a270b0.
Handlebars
apache-2.0
Szeliga/ember-forms,Szeliga/ember-forms
ae6ca2548f417e0522ce2de322117eb8a5e641b1
tests/dummy/app/templates/tooltip-auto-close.hbs
tests/dummy/app/templates/tooltip-auto-close.hbs
<h2>Automatically Closing Tooltips</h2> <ul class="examples"> <li> {{#test-component tooltipContent='This shows on a click event, then hides' tooltipEvent='click' data-test='auto-close-basic' tooltipDuration=2000 }} Click me {{/test-component}} </li> <li> {{#test-component data-test='auto-close-component'}} {{#tooltip-on-parent duration="1000" event="mouseenter"}} Using a component with duration set {{/tooltip-on-parent}} Hover over me {{/test-component}} </li> <li> {{#test-calling-component}} <div class="has-tooltip inline-block" data-test="auto-close-data" data-tooltip-content="This is set on a data attribute" data-tooltip-event="click" data-tooltip-duration="1000" > Click me </div> {{/test-calling-component}} </li> <li> {{input type="text" data-test="auto-close-input" tooltipEvent="focus" tooltipContent="Auto-closing tooltip on {{input}}" tooltipDuration="1000" placeholder="Focus field" }} </li> </ul>
<h2>Automatically Closing Tooltips</h2> <ul class="examples"> <li> {{#test-component tooltipContent='This shows on a click event, then hides' tooltipEvent='click' data-test='auto-close-basic' tooltipDuration=2000 }} Click me {{/test-component}} </li> <li> {{#test-component data-test='auto-close-component'}} {{#tooltip-on-parent duration='1000' event='mouseenter'}} Using a component with duration set {{/tooltip-on-parent}} Hover over me {{/test-component}} </li> <li> {{#test-calling-component}} <div class="has-tooltip inline-block" data-test="auto-close-data" data-tooltip-content="This is set on a data attribute" data-tooltip-event="click" data-tooltip-duration="1000" > Click me </div> {{/test-calling-component}} </li> <li> {{input type='text' data-test='auto-close-input' tooltipEvent='focus' tooltipContent='Auto-closing tooltip on {{input}}' tooltipDuration='1000' placeholder='Focus field' }} </li> </ul>
Use single-quotes for HTMLBars attributes
Use single-quotes for HTMLBars attributes
Handlebars
mit
maxhungry/ember-tooltips,zenefits/ember-tooltips,sir-dunxalot/ember-tooltips,maxhungry/ember-tooltips,zenefits/ember-tooltips,sir-dunxalot/ember-tooltips
5e7a13da8fc7ee91bd3a74aeb9247549fcf8703e
public/views/welcome.hbs
public/views/welcome.hbs
<div class="welcome"> <h1 class="welcome__title">Welcome to <br> CAMHS</h1> <img class="welcome__image" src="./assets/animated-lion.svg" alt="Cute lion"> <p class="welcome__text"> We would like to get to know you better. Click next to get started. </p> {{> buttons }} </div>
<div class="welcome"> <div class="welcome__text"> <h1 class="welcome__title">Welcome to <br> CAMHS</h1> </div> <img class="welcome__image" src="./assets/animated-lion.svg" alt="Cute lion"> <p class="welcome__text"> We would like to get to know you better. Click next to get started. </p> {{> buttons }} </div>
Add more space for main title
Add more space for main title realted #102
Handlebars
mit
CYPIAPT-LNDSE/welcome-to-camhs,CYPIAPT-LNDSE/welcome-to-camhs
fb690b324e1a7ebe7f240dec964c215d24a7fa10
tests/dummy/app/docs/installation/template.hbs
tests/dummy/app/docs/installation/template.hbs
<h3>Installation</h3> <p> Within your ember-cli project folder, run the following: </p> <CodeSnippet @name="ember-install.sh" /> <p> To use with native JavaScript/TypeScript classes and decorator syntax (<strong>Recommended</strong>) as used throughout this documentation, ensure you also meet the following in your application: <ul> <li>At least <code>ember-cli-babel@^7.7.2</code></li> <li>At least <code>@babel/core@^7.5.0</code> (as a transitive dependency via <code>ember-cli-babel</code>)</li> <li>At least <code>ember-cli-typescript@^2.0.0</code> and TypeScript 3.7+, if you want to use it with TypeScript</li> <li><code>@ember-decorators/babel-transforms</code> is _not_ installed</li> <li>Below Ember v3.10: <a href="https://github.com/pzuraq/ember-decorators-polyfill" rel="noreferrer noopener"><code>ember-decorators-polyfill</code></a> is needed</li> </ul> </p>
<h3>Installation</h3> <p> Within your ember-cli project folder, run the following: </p> <CodeSnippet @name="ember-install.sh" /> <p> (<strong>Recommended</strong>) To use with native JavaScript/TypeScript classes and decorator syntax as used throughout this documentation, ensure you also meet the following in your application/addon: <ul> <li>At least <code>ember-cli-babel@^7.7.2</code></li> <li>At least <code>@babel/core@^7.5.0</code> (as a transitive dependency via <code>ember-cli-babel</code>)</li> <li>At least <code>ember-cli-typescript@^2.0.0</code> and TypeScript 3.7+, if you want to use it with TypeScript</li> <li><code>@ember-decorators/babel-transforms</code> is _not_ installed</li> <li>Below Ember v3.10: <a href="https://github.com/pzuraq/ember-decorators-polyfill" rel="noreferrer noopener"><code>ember-decorators-polyfill</code></a> is needed</li> </ul> </p>
Move recommended label so it looks less awkward
Move recommended label so it looks less awkward
Handlebars
mit
machty/ember-concurrency,machty/ember-concurrency,machty/ember-concurrency,machty/ember-concurrency
e5f456fcc7ea6257c602d58485672a056393f0ba
views/partials/forms/checkbox-radio.handlebars
views/partials/forms/checkbox-radio.handlebars
<form class="pure-form"> <label for="{{id 'option-one'}}" class="pure-checkbox"> <input id="{{id 'option-one'}}" type="checkbox" value=""> Here's option one. </label> <label for="{{id 'option-two'}}" class="pure-radio"> <input id="{{id 'option-two'}}" type="radio" name="optionsRadios" value="option1" checked> Here's a radio button. You can choose this one.. </label> <label for="{{id 'option-three'}}" class="pure-radio"> <input id="{{id 'option-three'}}" type="radio" name="optionsRadios" value="option2"> ..Or this one! </label> </form>
<form class="pure-form"> <label class="pure-checkbox"> <input type="checkbox" value=""> Here's option one. </label> <label class="pure-radio"> <input type="radio" name="optionsRadios" value="option1" checked> Here's a radio button. You can choose this one.. </label> <label class="pure-radio"> <input type="radio" name="optionsRadios" value="option2"> ..Or this one! </label> </form>
Remove optional for attributes on input labels
Remove optional for attributes on input labels <input> elements that are wrapped in a <label> element have all of the same functionality and semantics when they don't have a for attribute.
Handlebars
bsd-3-clause
jamesalley/pure-site,weigang992003/pure-css-chinese,weigang992003/pure-css-chinese,yahoo/pure-site,chensy0203/pure-site,pandoraui/pure-site,yahoo/pure-site,jamesalley/pure-site
73198d90a82933a025ed003bbd53dc0affe5a47b
app/authenticated/projects/index/template.hbs
app/authenticated/projects/index/template.hbs
<section class="header clearfix"> <h1 class="pull-left">{{t 'projectsPage.header'}}</h1> <div class="vertical-middle"></div> <div class="right-buttons"> {{#link-to "authenticated.projects.new" class="btn bg-primary btn-sm icon-btn"}} <span class="darken"> <i class="icon icon-folder"></i> </span> <span>{{t 'projectsPage.addProject'}}</span> {{/link-to}} </div> </section> {{project-table model=model.projects}}
<section class="header clearfix"> <h1 class="pull-left">{{t 'projectsPage.header'}}</h1> <div class="vertical-middle"></div> <div class="right-buttons"> {{#link-to "authenticated.projects.new" class="btn bg-primary btn-sm icon-btn"}} <span class="darken"> <i class="icon icon-folder"></i> </span> <span>{{t 'projectsPage.addProject'}}</span> {{/link-to}} </div> </section> {{project-table model=model.projects}}
Indent body of link-to block
Indent body of link-to block
Handlebars
apache-2.0
vincent99/ui,lvuch/ui,rancherio/ui,lvuch/ui,westlywright/ui,lvuch/ui,rancher/ui,rancherio/ui,pengjiang80/ui,pengjiang80/ui,westlywright/ui,vincent99/ui,rancher/ui,rancherio/ui,vincent99/ui,pengjiang80/ui,rancher/ui,westlywright/ui
b7271e34905e31c05927c46873e23750f8ff7c0c
app/templates/components/flexberry-groupedit.hbs
app/templates/components/flexberry-groupedit.hbs
{{groupedit-toolbar componentName=componentName readonly=readonly }} {{object-list-view componentName=componentName class=class modelProjection=modelProjection content=content cellComponent=cellComponent readonly=readonly rowClickable=_rowClickable headerClickable=orderable showCheckBoxInRow=_showCheckBoxInRow showDeleteButtonInRow=_showDeleteButtonInRow sortByColumn=(action (if this.attrs.sortByColumn this.attrs.sortByColumn "sortByColumn")) addColumnToSorting=(action (if this.attrs.addColumnToSorting this.attrs.addColumnToSorting "addColumnToSorting")) }}
{{groupedit-toolbar componentName=componentName readonly=readonly }} {{object-list-view componentName=componentName class=class modelProjection=modelProjection content=content readonly=readonly rowClickable=_rowClickable headerClickable=orderable showCheckBoxInRow=_showCheckBoxInRow showDeleteButtonInRow=_showDeleteButtonInRow sortByColumn=(action (if this.attrs.sortByColumn this.attrs.sortByColumn "sortByColumn")) addColumnToSorting=(action (if this.attrs.addColumnToSorting this.attrs.addColumnToSorting "addColumnToSorting")) }}
Remove 'cellComponent' attribute from groupedit
Remove 'cellComponent' attribute from groupedit
Handlebars
mit
Flexberry/ember-flexberry,Flexberry/ember-flexberry,Flexberry/ember-flexberry,Flexberry/ember-flexberry
9e2fa90ed3b9d8b1ffab22a0b5938076a8f3b542
app/templates/index.hbs
app/templates/index.hbs
<div> {{#link-to 'artists' (query-params name="Brad Sucks")}}Artists{{/link-to}} </div>
<div> {{#link-to 'artists'}}Artists{{/link-to}} </div>
Remove query param in artist page link
Remove query param in artist page link
Handlebars
bsd-3-clause
FreeMusicNinja/freemusic.ninja,FreeMusicNinja/freemusic.ninja
f018340da56f58216bb32af9b86cbb061bef364c
app/templates/components/bd-stop.hbs
app/templates/components/bd-stop.hbs
{{#link-to 'arrivals' stop.id class="list-item"}} <span {{action 'toggleFavorite' stop bubbles=false}} class="list-item__button list-item__button button--fav"> {{bd-icon (if isFavorite 'heart' 'heart-o')}} </span> <h1 class="list-item__title">{{stop.name}}</h1> <div class="list-item__details"> {{#each stop.routes as |route|}} {{bd-route-tag route=route}} {{/each}} <span class="list-item__distance"> <i class="bd-icon bd-icon--walk"></i> 0.5mi </span> </div> {{/link-to}}
{{#link-to 'arrivals' stop.id class="list-item"}} <span {{action 'toggleFavorite' stop bubbles=false}} class="list-item__button button--fav"> {{bd-icon (if isFavorite 'heart' 'heart-o')}} </span> <h1 class="list-item__title">{{stop.name}}</h1> <div class="list-item__details"> {{#each stop.routes as |route|}} {{bd-route-tag route=route}} {{/each}} </div> {{/link-to}}
Remove distance metadata placeholder from the view
Remove distance metadata placeholder from the view
Handlebars
mit
bus-detective/web-client,bus-detective/web-client
61f3229cbf3e1406b835496ee6df40866be60c0b
app/templates/components/detail-taxonomies.hbs
app/templates/components/detail-taxonomies.hbs
{{#if isManaging}} <div class='title'> <span class='detail-specific-title'>{{t 'taxonomies.termsManageTitle'}}</span> </div> {{else}} <div class='title {{if subject.terms.length "clickable"}}' {{action 'collapse'}}> {{t 'general.terms'}} ({{subject.terms.length}}) </div> {{/if}} <div class='actions'> {{#if isManaging}} <button class='bigadd' {{action 'save'}}> {{fa-icon (if isSaving 'spinner' 'check') spin=(if isSaving true false)}} </button> <button class='bigcancel' {{action 'cancel'}}>{{fa-icon 'undo'}}</button> {{else if editable}} <button {{action 'manage'}}>{{t 'taxonomies.termsManageTitle'}}</button> {{/if}} </div> <div class='content'> {{#if isManaging}} {{taxonomy-manager subject=subject selectedTerms=bufferedTerms add='addTermToBuffer' remove='removeTermFromBuffer'}} {{else}} {{#each subject.associatedVocabularies as |vocab| }} {{detail-terms-list vocabulary=vocab terms=subject.terms canEdit=false}} {{/each}} {{/if}} </div>
{{#if isManaging}} <div class='title'> <span class='detail-specific-title'>{{t 'taxonomies.termsManageTitle'}}</span> </div> {{else}} <div class='title {{if showCollapsible "clickable collapsible"}}' {{action 'collapse'}}> {{t 'general.terms'}} ({{subject.terms.length}}) </div> {{/if}} <div class='actions'> {{#if isManaging}} <button class='bigadd' {{action 'save'}}> {{fa-icon (if isSaving 'spinner' 'check') spin=(if isSaving true false)}} </button> <button class='bigcancel' {{action 'cancel'}}>{{fa-icon 'undo'}}</button> {{else if editable}} <button {{action 'manage'}}>{{t 'taxonomies.termsManageTitle'}}</button> {{/if}} </div> <div class='content'> {{#if isManaging}} {{taxonomy-manager subject=subject selectedTerms=bufferedTerms add='addTermToBuffer' remove='removeTermFromBuffer'}} {{else}} {{#each subject.associatedVocabularies as |vocab| }} {{detail-terms-list vocabulary=vocab terms=subject.terms canEdit=false}} {{/each}} {{/if}} </div>
Add collapsible control to taxonomy title
Add collapsible control to taxonomy title
Handlebars
mit
dartajax/frontend,gboushey/frontend,gabycampagna/frontend,djvoa12/frontend,ilios/frontend,stopfstedt/frontend,djvoa12/frontend,thecoolestguy/frontend,jrjohnson/frontend,jrjohnson/frontend,thecoolestguy/frontend,dartajax/frontend,stopfstedt/frontend,ilios/frontend,gboushey/frontend,gabycampagna/frontend
31bcb38d38eb2126632386cabe5419a26e64be60
app/index.hbs
app/index.hbs
<!doctype html> <html lang="en"> <head> <title></title> <meta charset="utf-8"> <meta name="description" content=""> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="{{ assetPath "app.css" }}"> </head> <body> <main class="container-fluid" ui-view> <div class="row"> <div class="col-xs-12"> <h1>Hello World!</h1> </div> </div> </main> <script src="{{ assetPath "app.min.js" }}"></script> <script src="{{ assetPath "registration.worker.js" }}"></script> </body> </html>
<!doctype html> <html lang="en"> <head> <title></title> <meta charset="utf-8"> <meta name="description" content=""> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="{{ assetPath "app.css" }}"> </head> <body> <main class="container-fluid" ui-view> <div class="row"> <div class="col-xs-12"> <h1>Hello World!</h1> <a href="" ui-sref="app.example">Example state</a> </div> </div> </main> <script src="{{ assetPath "app.min.js" }}"></script> <script src="{{ assetPath "registration.worker.js" }}"></script> </body> </html>
Add link to example state
fix(example): Add link to example state
Handlebars
mit
paradox41/app-template,UnderMyBed/app-template,UnderMyBed/app-template,paradox41/app-template,TomNeyland/app-template,maruf-nc/app-template,maruf-nc/app-template,Ortus-Solutions/app-template,TomNeyland/material-app-template,TomNeyland/material-app-template,TomNeyland/app-template,Ortus-Solutions/app-template
ea17869bc667d3765ec6f62600c1756fbb45069a
src/main/web/florence/templates/childDeletes.handlebars
src/main/web/florence/templates/childDeletes.handlebars
<div> {{#each root.children}} <ul class="page-list"> <li class="page-list__item"> <span class="page__item page__item--{{type}} delete-child" onclick=""> {{description.title}}{{#if description.edition}}: {{description.edition}}{{/if}}<br/> {{#parent_dir uri}}{{/parent_dir}} </span> </li> {{#if children}} {{! Within the context of the current item }} <ul> {{> childDeletes}} {{! Recursively render the partial }} </ul> {{/if}} {{/each}} </ul> </div>
<div> <ul class="page-list"> {{#each root.children}} <li class="page-list__item"> <span class="page__item page__item--{{type}} delete-child"> {{description.title}}{{#if description.edition}}: {{description.edition}}{{/if}}<br/> {{#parent_dir uri}}{{/parent_dir}} </span> </li> {{#if children}} {{! Within the context of the current item }} <ul> {{> childDeletes}} {{! Recursively render the partial }} </ul> {{/if}} {{/each}} </ul> </div>
Fix mark up and remove onclick
Fix mark up and remove onclick
Handlebars
mit
ONSdigital/florence,ONSdigital/florence,ONSdigital/florence,ONSdigital/florence
8e30d168ecdc265fa7de38f21be29c1d6c07fd94
addon/templates/components/date-range-picker.hbs
addon/templates/components/date-range-picker.hbs
<label>{{label}}</label> {{input value=rangeText class='daterangepicker-input form-control' placeholder=placeholder}} <div class="hide"> {{input value=start}} {{input value=end}} </div>
{{#if label}} <label>{{label}}</label> {{/if}} {{input value=rangeText class='daterangepicker-input form-control' placeholder=placeholder}} <div class="hide"> {{input value=start}} {{input value=end}} </div>
Add ability to disable label
Add ability to disable label
Handlebars
mit
shijistar/ember-cli-daterangepicker,josemarluedke/ember-cli-daterangepicker,shijistar/ember-cli-daterangepicker,josemarluedke/ember-cli-daterangepicker
6b4a43ab7b0b88c12de131ac6ce0910ac3055efe
app/components/layer-template-select/template.hbs
app/components/layer-template-select/template.hbs
{{#if isOpen}} <div class="pages-overlay"> <div class="content"> <div class="container"> <div class="overlay-dismiss"> <i class="material-icons" {{action 'dismiss'}}>close</i> </div> <h2> Select a template</h2> <div class="row p-v-xl"> {{#each themeList as |item|}} <div class="col-sm-4 m-b-lg"> <div class="theme-select-item" {{action 'renderTemplate' item.id}}> {{#if (eq theme.id item.id)}} <div class="theme-selected"> <i class="material-icons">check</i> </div> {{/if}} <div class="theme-thumb" style="background:url('{{item.thumb}}')"></div> <div class="theme-content p-md"> <h3> {{item.name}}</h3> <p>{{item.description}}</p> </div> </div> </div> {{/each}} </div> </div> </div> </div> {{/if}} <button class="btn-outline-cus" {{action 'toggleProperty' 'isOpen'}}> Select a template </button>
{{#if isOpen}} <div class="pages-overlay"> <div class="content"> <div class="container"> <div class="overlay-dismiss"> <i class="material-icons" {{action 'dismiss'}}>close</i> </div> <h2> Select a template</h2> <div class="row p-v-xl"> {{#each themeList as |item|}} <div class="col-sm-4 m-b-lg"> <div class="theme-select-item" {{action 'renderTemplate' item.id}}> {{#if (eq theme.id item.id)}} <div class="theme-selected"> <i class="material-icons">check</i> </div> {{/if}} <div class="theme-thumb" style="background-image:url('{{item.thumb}}')"></div> <div class="theme-content p-md"> <h3> {{item.name}}</h3> <p>{{item.description}}</p> </div> </div> </div> {{/each}} </div> </div> </div> </div> {{/if}} <button class="btn-outline-cus" {{action 'toggleProperty' 'isOpen'}}> Select a template </button>
Fix non specific style rule to make sure other background styles apply
Fix non specific style rule to make sure other background styles apply
Handlebars
apache-2.0
caneruguz/osfpages,Rytiggy/osfpages,caneruguz/osfpages,Rytiggy/osfpages
7243db6b968c16802165e3f3e75449d7898639f4
page-film-discussions.hbs
page-film-discussions.hbs
{{!< default}} {{! This is a page template. A page outputs content just like any other post, and has all the same attributes by default, but you can also customise it to behave differently if you prefer. }} <nav class="main-nav clearfix"> <a class="back-button icon-arrow-left" href="{{@blog.url}}">Home</a> <a class="subscribe-button icon-feed" href="{{@blog.url}}/rss/">Subscribe</a> </nav> <main class="content" role="main"> <article class="{{post_class}}"> {{! Everything inside the #post tags pulls data from the post }} {{#post}} <h1 class="post-title">{{title}}</h1> <section class="post-content film-schedule"> {{content}} </section> {{/post}} </article> </main>
{{!< default}} {{! This is a page template. A page outputs content just like any other post, and has all the same attributes by default, but you can also customise it to behave differently if you prefer. }} <header class="main-header post-head {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}"> <nav class="main-nav {{#if image}}overlay{{/if}} clearfix"> <a class="back-button icon-arrow-left" href="{{@blog.url}}">Home</a> <a class="subscribe-button icon-feed" href="{{@blog.url}}/rss/">Subscribe</a> </nav> </header> <main class="content" role="main"> <article class="{{post_class}}"> {{! Everything inside the #post tags pulls data from the post }} {{#post}} <header class="post-header"> <h1 class="post-title">{{title}}</h1> </header> <section class="post-content film-schedule"> {{content}} </section> {{/post}} </article> </main>
Update film schedule template to match default
Update film schedule template to match default
Handlebars
mit
benbrandt/Casper-Ben,benbrandt/Casper-Ben
9fc42df91a7e5bc273e02eda5ddb55372ac7a90c
index.hbs
index.hbs
{{!< default}} {{! The comment above "< default" means - insert everything in this file into the {body} of the default.hbs template, which contains our header/footer. }} {{! The big featured header on the homepage, with the site logo and description }} <header id="site-head" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}> <div class="vertical"> <div id="site-head-content" class="inner"> <h1 class="blog-title"> <img alt="{{@blog.title}}" src="/assets/images/uwtb.svg"/> </h1> </div> </div> </header> {{! The main content area on the homepage }} <main class="content" role="main"> {{! Each post will be output using this markup }} {{#foreach posts}} <article class="{{post_class}}"> <header class="post-header"> <span class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time> {{#if tags}}on {{tags}}{{/if}}</span> <h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2> </header> <section class="post-excerpt"> <p>{{excerpt}}&hellip;</p> </section> </article> {{/foreach}} {{!! After all the posts, we have the previous/next pagination links }} {{pagination}} </main>
{{!< default}} {{! The comment above "< default" means - insert everything in this file into the {body} of the default.hbs template, which contains our header/footer. }} {{! The big featured header on the homepage, with the site logo and description }} <header id="site-head" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}> <div class="vertical"> <div id="site-head-content" class="inner"> <h1 class="blog-title"> <img alt="{{@blog.title}}" src="/assets/images/uwtb.svg"/> </h1> </div> </div> </header> {{! The main content area on the homepage }} <main class="content" role="main"> {{! Each post will be output using this markup }} {{#foreach posts}} <article class="{{post_class}}"> <header class="post-header"> <span class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time> {{#if tags}}on {{tags}}{{/if}}</span> <h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2> </header> <section class="post-excerpt"> <p>{{#if this.meta_description}}{{this.meta_description}}{{else}}{{excerpt}}&hellip;{{/if}}</p> </section> </article> {{/foreach}} {{!! After all the posts, we have the previous/next pagination links }} {{pagination}} </main>
Use meta description as experpt if possible.
Use meta description as experpt if possible.
Handlebars
mit
mattbierner/blog.mattbierner.com-ghosttheme
f4a91654715e804f74fb23239519134ef7e64e7e
app/templates/ember-table/sortable-header-cell.hbs
app/templates/ember-table/sortable-header-cell.hbs
<div class="ember-table-content-container" title="Click to change ordering for this column"> <span class="ember-table-content"> {{view.content.headerCellName}} {{#if view.content.sorted}} <div style="float:right;"> {{#if view.content.sortAscending}} <div title="Order ascending"> &#8593;{{view.content.sortNumber}} </div> {{else}} <div title="Order descending"> &#8595;{{view.content.sortNumber}} </div> {{/if}} </div> {{/if}} </span> </div>
<div class="ember-table-content-container" title="Click to change ordering for this column"> <span class="ember-table-content"> {{!-- Using of {{view.property...}} is deprecated see http://emberjs.com/deprecations/v1.x/#toc_ember-view. This sortable-header-cell should be replaced with Ember.Component in future, when ember-table table-cell will become an extendable Ember.Component. --}} {{view.content.headerCellName}} {{#if view.content.sorted}} <div style="float:right;"> {{#if view.content.sortAscending}} <div title="Order ascending"> &#8593;{{view.content.sortNumber}} </div> {{else}} <div title="Order descending"> &#8595;{{view.content.sortNumber}} </div> {{/if}} </div> {{/if}} </span> </div>
Add comment about {{view.property...}} deprecation
Add comment about {{view.property...}} deprecation
Handlebars
mit
Flexberry/ember-flexberry,Flexberry/ember-flexberry,Flexberry/ember-flexberry,Flexberry/ember-flexberry
a05fe3c60b475a60ab8692d30d4e118f47319852
addon/templates/components/demo--ui-checkbox.hbs
addon/templates/components/demo--ui-checkbox.hbs
{{#ui-field size=size type="checkbox" as |f|}} {{#f.input}} Small {{/f.input}} {{/ui-field}}
{{#ui-field kind=kind states=states size=size type="checkbox" as |f|}} {{#f.input}} {{size}} {{/f.input}} {{/ui-field}}
Use size for checkbox text
Use size for checkbox text
Handlebars
mit
prototypal-io/ui-base-theme,prototypal-io/ui-base-theme
0d3b3d6f4cd978974b295b75d6d902da0702d844
views/feed.handlebars
views/feed.handlebars
<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>ALL YOUR PANTS</title> <description>The Comic From The Past About The Future</description> <link>{{ baseUrl }}/</link> <atom:link href="{{ baseUrl }}/feed.xml" rel="self" type="application/rss+xml" /> {{#each archive}} <item> <title>The One We Call: {{ this.time }}</title> <description>A great comic of struggle, loss and redemption.</description> <enclosure url="{{ this.url }}" length="0" type="image/*" /> <pubDate>{{xmlDate this.time }}</pubDate> <link>{{ baseUrl }}{{ comicUrl this.time }}</link> <guid isPermaLink="true">{{ baseUrl }}{{ comicUrl this.time }}</guid> </item> {{/each}} </channel> </rss>
<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> <title>ALL YOUR PANTS</title> <description>The Comic From The Past About The Future</description> <link>{{ baseUrl }}/</link> <atom:link href="{{ baseUrl }}/feed.xml" rel="self" type="application/rss+xml" /> {{#each archive}} <item> <title>The One We Call: {{ this.time }}</title> <description>A great comic of struggle, loss and redemption. <![CDATA[<img src="{{ this.url}}" alt="dickbutt" />]]></description> <enclosure url="{{ this.url }}" length="0" type="{{ this.mime }}" /> <pubDate>{{xmlDate this.time }}</pubDate> <link>{{ baseUrl }}{{ comicUrl this.time }}</link> <guid isPermaLink="true">{{ baseUrl }}{{ comicUrl this.time }}</guid> </item> {{/each}} </channel> </rss>
Update the mime and write out a CDATA img tag
Update the mime and write out a CDATA img tag
Handlebars
mit
desert-planet/ayp
6c57a441f94ef63b6765659b4a1fd6c4a4aa1263
src/main/web/templates/handlebars/partials/table.handlebars
src/main/web/templates/handlebars/partials/table.handlebars
{{!--Not having line breaks before and after the div markups breaks tables displaying on the page--}} <div class="markdown-table-container print--avoid-break"> <h4>{{title}}</h4> <div class="markdown-table-wrap"> {{{html}}} </div> <h6>Download this table</h6> <form method="get" action="/generator" class="inline"> <button type="submit" title="Download CSV" class="btn btn--primary btn--thick download-analytics"> .csv </button> <input type="hidden" name="format" value="csv"/> <input type="hidden" name="uri" value="{{absolute uri}}"/> </form> <form method="get" action="/generator" class="inline"> <button type="submit" title="Download XLS" class="btn btn--primary btn--thick download-analytics"> .xls </button> <input type="hidden" name="format" value="xls"/> <input type="hidden" name="uri" value="{{absolute uri}}"/> </form> </div>
{{!--Not having line breaks before and after the div markups breaks tables displaying on the page--}} <div class="markdown-table-container print--avoid-break"> <h4>{{title}}</h4> <div class="markdown-table-wrap"> {{{html}}} </div> <h6>Download this table</h6> <form method="get" action="/file" class="inline"> <button type="submit" title="Download XLS" class="btn btn--primary btn--thick download-analytics"> .xls </button> <input type="hidden" name="format" value="xls"/> <input type="hidden" name="uri" value="{{absolute uri}}.xls"/> </form> </div>
Fix xls download, removed cvs download
Fix xls download, removed cvs download
Handlebars
mit
ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage
62990438f3719e7cdfad65da774ca45c10ac91b0
app/templates/components/upf-table/header-cell.hbs
app/templates/components/upf-table/header-cell.hbs
{{#if column.titleIcon}} <i class="fa fa-{{column.titleIcon}}"></i> {{else}} {{column.title}} {{/if}}
{{#if column.titleIcon}} <i class="fa fa-{{column.titleIcon}}"></i> {{else}} {{column.title}} {{/if}} {{#if column.tooltip}} <fa class="fa fa-info-circle" data-toggle="tooltip" title={{column.tooltip}}></fa> {{/if}} {{#if column.subtitle}} <div class="subtitle text-size-4">{{column.subtitle}}</div> {{/if}}
Add more custom options to table header
Add more custom options to table header
Handlebars
mit
upfluence/oss-components,upfluence/oss-components,upfluence/oss-components,upfluence/oss-components
79e6b8f989b89697f23a7dcb72176d0c1897c746
server/views/partials/indicatorList.hbs
server/views/partials/indicatorList.hbs
{{#this}} <a id="indicator-{{css-classify title}}" class="indicator-box" href="/indicators/{{id}}"> <div class="full-name">{{title}}<span>›</span></div> <div class="brief">{{truncate description 80}}</div> <div class="box-header"> <div class="title"><h3><span>{{short_name}}</span></h3></div> </div> <div class="context-text {{css-classify page.headline.text}}">{{page.headline.text}}</div> <div class="parameter"> <h4>{{page.headline.value}}</h4> <div class="unit">{{indicatorDefinition.short_unit}}</div> </div> <div class="last-update"> <span class="status {{css-classify narrativeRecency}}"></span> {{narrativeRecency}} {{#if APP_CONFIG.features.dpsir_filtering}} {{> dpsir dpsir }} {{/if}} </div> </a> {{/this}}
{{#this}} <a id="indicator-{{css-classify title}}" class="indicator-box" href="/indicators/{{id}}"> <div class="full-name">{{title}}<span>›</span></div> <div class="brief">{{truncate description 80}}</div> <div class="box-header"> <div class="title"><h3><span>{{short_name}}</span></h3></div> </div> <div class="context-text {{css-classify page.headline.text}}">{{page.headline.text}}</div> <div class="parameter"> <h4>{{page.headline.value}}</h4> <div class="unit">{{indicatorDefinition.short_unit}}</div> </div> <div class="last-update"> <span class="status {{css-classify narrativeRecency}}"></span> {{narrativeRecency}} {{#if APP_CONFIG.features.dpsir_filtering}} {{> dpsir dpsir }} {{/if}} </div> </a> {{/this}}
Remove indentation from deleted if block
Remove indentation from deleted if block
Handlebars
bsd-3-clause
unepwcmc/NRT,unepwcmc/NRT
5f480495f8b2b0018d46c2b14f5c01d13fcf1968
static/templates/invite_subscription.handlebars
static/templates/invite_subscription.handlebars
{{! Client-side Mustache template for rendering subscriptions in the "invite user" form.}} <div class="invite-stream-controls"> <a href="#" class="invite_check_all_button">{{t "Check all" }}</a> | <a href="#" class="invite_uncheck_all_button">{{t "Uncheck all" }}</a> </div> <div id="invite-stream-checkboxes" class="new-style"> {{#each streams}} <label class="checkbox display-block"> <input type="checkbox" name="stream" value="{{name}}" {{#if default_stream}}checked="checked"{{/if}} /> <span></span> {{#if invite_only}}<i class="fa fa-lock" aria-hidden="true"></i>{{/if}} <label class="inline-block">{{name}}</label> </label> {{/each}} </div>
{{! Client-side Mustache template for rendering subscriptions in the "invite user" form.}} <div class="invite-stream-controls"> <a href="#" class="invite_check_all_button">{{t "Check all" }}</a> | <a href="#" class="invite_uncheck_all_button">{{t "Uncheck all" }}</a> </div> <div id="invite-stream-checkboxes" class="new-style"> {{#each streams}} <label class="checkbox display-block"> <input type="checkbox" name="stream" value="{{name}}" {{#if default_stream}}checked="checked"{{/if}} /> <span></span> {{#if invite_only}}<i class="fa fa-lock" aria-hidden="true"></i>{{/if}} {{name}} </label> {{/each}} </div>
Make stream labels click targets.
invitations: Make stream labels click targets. Label tags can't be nested in each other. Fixes #7582.
Handlebars
apache-2.0
punchagan/zulip,brainwane/zulip,timabbott/zulip,brainwane/zulip,rht/zulip,shubhamdhama/zulip,mahim97/zulip,punchagan/zulip,rht/zulip,timabbott/zulip,synicalsyntax/zulip,punchagan/zulip,synicalsyntax/zulip,kou/zulip,kou/zulip,eeshangarg/zulip,eeshangarg/zulip,kou/zulip,shubhamdhama/zulip,brainwane/zulip,kou/zulip,showell/zulip,hackerkid/zulip,dhcrzf/zulip,zulip/zulip,synicalsyntax/zulip,synicalsyntax/zulip,tommyip/zulip,tommyip/zulip,hackerkid/zulip,eeshangarg/zulip,timabbott/zulip,showell/zulip,shubhamdhama/zulip,timabbott/zulip,synicalsyntax/zulip,andersk/zulip,andersk/zulip,punchagan/zulip,showell/zulip,dhcrzf/zulip,zulip/zulip,andersk/zulip,brainwane/zulip,mahim97/zulip,showell/zulip,eeshangarg/zulip,showell/zulip,eeshangarg/zulip,zulip/zulip,hackerkid/zulip,dhcrzf/zulip,mahim97/zulip,rht/zulip,timabbott/zulip,synicalsyntax/zulip,punchagan/zulip,dhcrzf/zulip,punchagan/zulip,rishig/zulip,tommyip/zulip,hackerkid/zulip,jackrzhang/zulip,andersk/zulip,shubhamdhama/zulip,andersk/zulip,shubhamdhama/zulip,hackerkid/zulip,eeshangarg/zulip,tommyip/zulip,shubhamdhama/zulip,showell/zulip,punchagan/zulip,dhcrzf/zulip,dhcrzf/zulip,mahim97/zulip,andersk/zulip,rht/zulip,timabbott/zulip,jackrzhang/zulip,hackerkid/zulip,rishig/zulip,andersk/zulip,rishig/zulip,zulip/zulip,tommyip/zulip,brainwane/zulip,kou/zulip,jackrzhang/zulip,showell/zulip,zulip/zulip,rishig/zulip,dhcrzf/zulip,tommyip/zulip,synicalsyntax/zulip,hackerkid/zulip,rht/zulip,brainwane/zulip,timabbott/zulip,rishig/zulip,rht/zulip,rht/zulip,jackrzhang/zulip,tommyip/zulip,zulip/zulip,kou/zulip,zulip/zulip,rishig/zulip,jackrzhang/zulip,eeshangarg/zulip,kou/zulip,mahim97/zulip,mahim97/zulip,jackrzhang/zulip,rishig/zulip,brainwane/zulip,jackrzhang/zulip,shubhamdhama/zulip
db93e755d6dcafa913a87c91af1dcfbac389ea61
app/templates/repo.hbs
app/templates/repo.hbs
<div id="repo" class="{{view.className}} repo"> {{#if view.isEmpty}} {{view 'repos-empty'}} {{else}} {{#if repo.isLoaded}} <article id="repo-header" class="repo-header passed"> <header> <h1 class="repo-header-title">{{#link-to "repo" repo}}{{repo.slug}}{{/link-to}}</h1> <div class="repo-header-icons"> <a href={{controller.urlGithub}}><span class="icon icon--github-circle"></span></a> <a href="#" id="status-image-popup" name="status-images" class="open-popup" {{action "statusImages" target=view}}> <img src={{view.statusImageUrl}} title="Build Status Images"/> </a> </div> <p class="description">{{description}}</p> </header> <div class="repo-menus"> <div class="repo-menu-header"> {{repo-show-tools repo=repo build=build job=job tab=tab currentUser=auth.currentUser}} {{repo-show-tabs repo=repo tab=tab}} </div> <div class="tabbody repo-main"> {{outlet}} </div> </div> </article> {{else}} {{loading-indicator}} {{/if}} {{/if}} </div>
<div id="repo" class="{{view.className}} repo"> {{#if view.isEmpty}} {{view 'repos-empty'}} {{else}} {{#if repo.isLoaded}} <article id="repo-header" class="repo-header passed"> <header> <h1 class="repo-header-title">{{#link-to "repo" repo}}{{repo.slug}}{{/link-to}}</h1> <div class="repo-header-icons"> <a href={{controller.urlGithub}}><span class="icon icon--github-circle"></span></a> <a href="#" id="status-image-popup" name="status-images" class="open-popup" {{action "statusImages" target=view}}> <img src={{view.statusImageUrl}} title="Build Status Images"/> </a> </div> <p class="description">{{description}}</p> </header> <div class="repo-menus"> <div class="repo-menu-header"> {{repo-show-tools repo=repo build=build job=job tab=tab currentUser=auth.currentUser}} {{repo-show-tabs repo=repo tab=tab build=build job=job}} </div> <div class="tabbody repo-main"> {{outlet}} </div> </div> </article> {{else}} {{loading-indicator}} {{/if}} {{/if}} </div>
Fix build and jobs tabs
Fix build and jobs tabs
Handlebars
mit
Tiger66639/travis-web,2947721120/travis-web,fotinakis/travis-web,jlrigau/travis-web,travis-ci/travis-web,Tiger66639/travis-web,fauxton/travis-web,Tiger66639/travis-web,travis-ci/travis-web,2947721120/travis-web,fauxton/travis-web,fotinakis/travis-web,2947721120/travis-web,jlrigau/travis-web,jlrigau/travis-web,fotinakis/travis-web,fauxton/travis-web,travis-ci/travis-web,travis-ci/travis-web,Tiger66639/travis-web,fotinakis/travis-web,fauxton/travis-web,2947721120/travis-web,jlrigau/travis-web
8f290216efd56f471ffbf45fd074c22416bfae6e
static/templates/settings/admin_linkifier_list.hbs
static/templates/settings/admin_linkifier_list.hbs
{{#with linkifier}} <tr class="linkifier_row"> <td> <span class="linkifier_pattern">{{pattern}}</span> </td> <td> <span class="linkifier_url_format_string">{{url_format_string}}</span> </td> {{#if ../can_modify}} <td class="no-select actions"> <button class="button small delete btn-danger" data-linkifier-id="{{id}}"> <i class="fa fa-trash-o" aria-hidden="true"></i> </button> </td> {{/if}} </tr> {{/with}}
{{#with linkifier}} <tr class="linkifier_row"> <td> <span class="linkifier_pattern">{{pattern}}</span> </td> <td> <span class="linkifier_url_format_string">{{url_format_string}}</span> </td> {{#if ../can_modify}} <td class="no-select actions"> <button class="button small delete btn-danger" data-linkifier-id="{{id}}" title="{{t 'Delete' }}" aria-label="{{t 'Delete' }}"> <i class="fa fa-trash-o"></i> </button> </td> {{/if}} </tr> {{/with}}
Add `title` attribute to `Delete` button.
linkifiers: Add `title` attribute to `Delete` button. This commit adds `title` attribute and removes `aria-hidden` attribute in `Delete` button in linkifiers table. `aria-hidden` attribute is used only for icons on buttons that have a plain-text label.
Handlebars
apache-2.0
eeshangarg/zulip,hackerkid/zulip,zulip/zulip,punchagan/zulip,kou/zulip,rht/zulip,punchagan/zulip,rht/zulip,zulip/zulip,rht/zulip,andersk/zulip,andersk/zulip,eeshangarg/zulip,hackerkid/zulip,eeshangarg/zulip,kou/zulip,hackerkid/zulip,eeshangarg/zulip,eeshangarg/zulip,andersk/zulip,kou/zulip,zulip/zulip,zulip/zulip,hackerkid/zulip,punchagan/zulip,zulip/zulip,eeshangarg/zulip,zulip/zulip,punchagan/zulip,andersk/zulip,punchagan/zulip,hackerkid/zulip,rht/zulip,punchagan/zulip,kou/zulip,hackerkid/zulip,kou/zulip,hackerkid/zulip,punchagan/zulip,rht/zulip,andersk/zulip,andersk/zulip,kou/zulip,kou/zulip,andersk/zulip,rht/zulip,rht/zulip,eeshangarg/zulip,zulip/zulip
cd81598aa9e263d9097fc1d84ff0806895afdc45
app/templates/shape-download-link.hbs
app/templates/shape-download-link.hbs
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> <i class='fa fa-download'></i> Download <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li>All up in yo list</li> <li><a {{action downloadLink record.id "json"}}><i class='fa fa-download'></i> GeoJson</a></li> <li><a {{action downloadLink record.id "shapefile"}}><i class='fa fa-download'></i> ESRI Shapefile</a></li> <li><a {{action downloadLink record.id "kml"}}><i class='fa fa-download'></i> KML</a></li> </ul>
<div class="btn-group"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> <i class='fa fa-download'></i> Download <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li>All up in yo list</li> <li><a {{action downloadLink record.id "json"}}><i class='fa fa-download'></i> GeoJson</a></li> <li><a {{action downloadLink record.id "shapefile"}}><i class='fa fa-download'></i> ESRI Shapefile</a></li> <li><a {{action downloadLink record.id "kml"}}><i class='fa fa-download'></i> KML</a></li> </ul> </div>
Make dropdown menu appear below download button
Make dropdown menu appear below download button
Handlebars
mit
UrbanCCD-UChicago/plenario-explorer,UrbanCCD-UChicago/plenario-explorer,UrbanCCD-UChicago/plenario-explorer
e06410faf90f9beff1fbf9711be601416e9d95ac
tests/dummy/app/templates/snippets/the-nav-2.hbs
tests/dummy/app/templates/snippets/the-nav-2.hbs
{{#power-calendar class="demo-calendar-small" center=month onCenterChange=(action (mut month) value="date") as |calendar|}} <nav class="ember-power-calendar-nav"> <button class="ember-power-calendar-nav-control" onclick={{action calendar.actions.moveCenter -12 'month'}}>«</button> <button class="ember-power-calendar-nav-control" onclick={{action calendar.actions.moveCenter -1 'month'}}>‹</button> <div class="ember-power-calendar-nav-title"> {{moment-format calendar.center 'MMMM YYYY'}} </div> <button class="ember-power-calendar-nav-control" onclick={{action calendar.actions.moveCenter 1 'month'}}>›</button> <button class="ember-power-calendar-nav-control" onclick={{action calendar.actions.moveCenter 12 'month'}}>»</button> </nav> {{calendar.days}} {{/power-calendar}}
{{#power-calendar class="demo-calendar-small" center=month onCenterChange=(action (mut month) value="date") as |calendar|}} <nav class="ember-power-calendar-nav"> <button type="button" class="ember-power-calendar-nav-control" onclick={{action calendar.actions.moveCenter -12 'month'}}>«</button> <button type="button" class="ember-power-calendar-nav-control" onclick={{action calendar.actions.moveCenter -1 'month'}}>‹</button> <div class="ember-power-calendar-nav-title"> {{moment-format calendar.center 'MMMM YYYY'}} </div> <button class="ember-power-calendar-nav-control" onclick={{action calendar.actions.moveCenter 1 'month'}}>›</button> <button class="ember-power-calendar-nav-control" onclick={{action calendar.actions.moveCenter 12 'month'}}>»</button> </nav> {{calendar.days}} {{/power-calendar}}
Set button type in nav snippet
Set button type in nav snippet
Handlebars
mit
cibernox/ember-power-calendar,cibernox/ember-power-calendar,cibernox/ember-power-calendar
452cc4c9ce3960ac46fa49a5d61302768a39d18d
addon/templates/components/ui-popup--tooltip.hbs
addon/templates/components/ui-popup--tooltip.hbs
{{#if showPopup}} <div class="overlay" {{action action.hide}}></div> {{#component tether classPrefix="ui-popup--tooltip-"}} <div {{ui-root}} class="window"> <div class="window--wrapper"> {{yield}} </div> </div> {{/component}} {{/if}}
{{#if showPopup}} <div class="overlay" {{action action.hide}}></div> {{#component tether classPrefix=(concat uiPrefix "-")}} <div {{ui-root}} class="window"> <div class="window--wrapper"> {{yield}} </div> </div> {{/component}} {{/if}}
Update ui-popup to support theme system
Update ui-popup to support theme system
Handlebars
mit
prototypal-io/ui-base-theme,prototypal-io/ui-base-theme
5167554506b1aae31cca0328ffa516c79cc27041
youtube/views/partials/playlist_thumbnail.hbs
youtube/views/partials/playlist_thumbnail.hbs
<a href="youtube/playlist_items" class="playlist-thumbnail youtube" data-id="{{ id }}"> <img src="{{ icon }}"> <div class="legend"> <h3>{{ title }}</h3> <h4>{{g 'film'}} {{items_count}} {{t 'meta.videos'}}</h4> </div> </a>
<a href="youtube/playlist_items" class="playlist-thumbnail youtube" data-id="{{ id }}"> <img src="{{ icon }}"> <div class="legend"> <h3>{{ title }}</h3> <h4>{{g 'film'}} {{item_count}} {{t 'meta.videos'}}</h4> </div> </a>
Fix a wrong attribute reference
Fix a wrong attribute reference
Handlebars
agpl-3.0
daplayer/daplayer,daplayer/daplayer
3cf8d7911609a4675e68df3e4928be29c9760a61
generators/directive/directive.js.hbs
generators/directive/directive.js.hbs
angular.module('app.directives').directive('{{#lowercamelize}}{{name}}{{/lowercamelize}}', function() { });
angular.module('app.directives').directive('{{#lowercamelize}}{{name}}{{/lowercamelize}}', function() { return { }; });
Add more to directive generator
Add more to directive generator
Handlebars
mit
jupl/btc-angular
02a3c0e7306e0f0b7b235f2c92be6384179b15c8
app/assets/javascripts/templates/schedules/template.hbs
app/assets/javascripts/templates/schedules/template.hbs
<div id="schedule-content"> <div id="schedule-bar"> <div id="left"> <div id="switch"> <span id="left-switch" class="schedule-switch">&#9664;</span> <span id="schedule-num">0</span> / <span id="schedule-count">0</span> <span id="right-switch" class="schedule-switch">&#9654;</span> </div> <button type="button" id="clear-btn" class="clear-button" {{#if temporary}} disabled {{/if}}>Clear</button> <button type="button" id="ics-btn" class="clear-button">Download ICS</button> <button type="button" id="link-btn" class="clear-button" {{#if temporary}} disabled {{/if}}>Copy Schedule Link</button> </div> <div id="right"> <div id="schedule-status"></div> </div> </div> <div id="schedule-container"></div> </div> {{#unless temporary}} <div id="selection-container"></div> {{else}} <div id="temp-schedule-notice"> <p><strong>Selections Disabled</strong></p> <p> This is a temporary schedule. You're viewing a set of courses that doesn't correspond to what you have selected. To return to your selected schedules, click on the normal Schedule link in the top right. </p> </div> {{/unless}}
<div id="schedule-content"> <div id="schedule-bar"> <div id="left"> <div id="switch"> <span id="left-switch" class="schedule-switch">&#9664;</span> <span id="schedule-num">0</span> / <span id="schedule-count">0</span> <span id="right-switch" class="schedule-switch">&#9654;</span> </div> <button type="button" id="clear-btn" class="clear-button" {{#if temporary}} disabled {{/if}}>Clear</button> <button type="button" id="ics-btn" class="clear-button">Download ICS</button> <button type="button" id="link-btn" class="clear-button" {{#if temporary}} disabled {{/if}}>Copy Schedule Link</button> </div> <div id="right"> <div id="schedule-status"></div> </div> </div> <div id="schedule-container"></div> </div> {{#unless temporary}} <div id="selection-container"></div> {{else}} <div id="temp-schedule-notice"> <p><strong>Selections Disabled</strong></p> <p>This is a temporary schedule. You're viewing a set of courses that doesn't correspond to what you have selected. To return to your selected schedules, click on the normal Schedule link in the top right.</p> <p>Alternatively, to discard your currently selected courses and replace them with those shown on this schedule, click the button below.</p> <button type="button" id="replace-selections-btn" class="clear-button">Clear and Replace Selections</button> </div> {{/unless}}
Add extra paragraph and button to replace selections
Add extra paragraph and button to replace selections
Handlebars
mit
robinm8/yacs,robinm8/yacs,robinm8/yacs,robinm8/yacs
874342e5fb5549400c17191bf666bdcd25b3ba86
src/main/web/templates/handlebars/list/t9-11.handlebars
src/main/web/templates/handlebars/list/t9-11.handlebars
{{!-- {{#partial "block-title"}} Published methodologies {{/partial}} --}} {{#partial "block-results-text"}} <div class="col col--md-28 col--lg-38"> {{> list/partials/list-results-text-number result resultsLabel="methodology"}} </div> {{/partial}} {{#partial "block-filters"}} {{> list/filters/keywords}} {{> list/filters/methodology docCounts=result.docCounts}} {{> list/filters/topics}} {{/partial}} {{!-- Inheriting from base list template --}} {{> list/base/list showBreadcrumb=true breadcrumbLabel="Published methodologies"}}
{{!-- {{#partial "block-title"}} Published methodologies {{/partial}} --}} {{#partial "block-results-text"}} <div class="col col--md-28 col--lg-38"> {{> list/partials/list-results-text-number result resultsLabel="methodology"}} </div> {{/partial}} {{#partial "block-filters"}} {{> list/filters/keywords}} {{> list/filters/topics}} {{/partial}} {{!-- Inheriting from base list template --}} {{> list/base/list showBreadcrumb=true breadcrumbLabel="Published methodologies"}}
Remove methodology type partial from filters block
Remove methodology type partial from filters block
Handlebars
mit
ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage
0464f8d9af7269657c4584056eb0a038e9a253f1
addon/templates/components/form-fields/select-field.hbs
addon/templates/components/form-fields/select-field.hbs
{{#form-field propertyName class="select-field" classNames=fieldClasses errorClasses=errorClasses hintClasses=hintClasses inputClasses=inputClasses labelClasses=labelClasses object=object hint=hint form=form label=label control=control update=(action update) as |f|}} {{f.label required=required}} {{f.control accesskey=accesskey autofocus=autofocus dir=dir disabled=disabled groupLabelPath=groupLabelPath hidden=hidden lang=lang multiple=multiple options=options optionValuePath=optionValuePath optionLabelPath=optionLabelPath required=required search=search tabindex=tabindex }} {{f.errors}} {{f.hint}} {{/form-field}}
{{#form-field propertyName class="select-field" classNames=fieldClasses errorClasses=errorClasses hintClasses=hintClasses inputClasses=inputClasses labelClasses=labelClasses object=object hint=hint form=form label=label control=control update=(action update) as |f|}} {{f.label required=required}} {{f.control accesskey=accesskey autofocus=autofocus dir=dir disabled=disabled groupLabelPath=groupLabelPath hidden=hidden includeBlank=includeBlank lang=lang multiple=multiple options=options optionValuePath=optionValuePath optionLabelPath=optionLabelPath required=required search=search tabindex=tabindex }} {{f.errors}} {{f.hint}} {{/form-field}}
Add the missing includeBlank option
Add the missing includeBlank option
Handlebars
mit
martndemus/ember-form-for,ivanvanderbyl/ember-form-for,ivanvanderbyl/ember-form-for,martndemus/ember-form-for
4ccdb8da6e8f6fd1f995d9e92b166c4e8b783784
app/assets/javascripts/templates/_projectInfo.handlebars
app/assets/javascripts/templates/_projectInfo.handlebars
<div class="clearfix project-info-container"> <h1 class="pull-left project-title"> {{title}} </h1> </div> <div class="project-description"> {{#if showingProjectDescript}} <div> Sample Project Descript <a {{action hideProjectDescript}}>x</a> </div> {{else}} <a {{action showProjectDescript}}> Project Description </a> {{/if}} </div> <div class="progress progress-bar-global"> {{render "progressBarSection" auth.currentUser}} {{render "groupMemberProgressBars" groupMembers}} </div>
<div class="clearfix project-info-container"> <h1 class="pull-left project-title"> {{title}} </h1> </div> <div class="project-description"> {{#if showingProjectDescript}} <div> Sample Project Descript <a {{action hideProjectDescript}}>x</a> </div> {{else}} <a {{action showProjectDescript}}> <i class="fa fa-file fa-fw"></i> Project Description </a> {{/if}} </div> <div class="progress progress-bar-global"> {{render "progressBarSection" auth.currentUser}} {{render "groupMemberProgressBars" groupMembers}} </div>
Add icon next to project description
Add icon next to project description
Handlebars
mit
Gowiem/Sisyphus,Gowiem/Sisyphus
4a3bc2e932162f8b7680c9deca0ff73914299473
src/main/web/florence/templates/childDeletes.handlebars
src/main/web/florence/templates/childDeletes.handlebars
<div> {{#each root.children}} <ul class="page-list"> <li class="page-list__item"> <span class="page__item page__item--{{type}} delete-child" onclick=""> {{description.title}}{{#if description.edition}}: {{description.edition}}{{/if}}<br/> {{#parent_dir uri}}{{/parent_dir}} </span> </li> {{#if children}} {{! Within the context of the current item }} <ul> {{> childDeletes}} {{! Recursively render the partial }} </ul> {{/if}} {{/each}} </ul> </div>
<div> <ul class="page-list"> {{#each root.children}} <li class="page-list__item"> <span class="page__item page__item--{{type}} delete-child"> {{description.title}}{{#if description.edition}}: {{description.edition}}{{/if}}<br/> {{#parent_dir uri}}{{/parent_dir}} </span> </li> {{#if children}} {{! Within the context of the current item }} <ul> {{> childDeletes}} {{! Recursively render the partial }} </ul> {{/if}} {{/each}} </ul> </div>
Fix mark up and remove onclick
Fix mark up and remove onclick Former-commit-id: ea17869bc667d3765ec6f62600c1756fbb45069a
Handlebars
mit
ONSdigital/florence,ONSdigital/florence,ONSdigital/florence,ONSdigital/florence
92856435098f1d4ecb57455bb624ab09f99409c1
app/components/output-field-belongsto/template.hbs
app/components/output-field-belongsto/template.hbs
<span class="output text"> {{#if value}} <span class="value"> {{#if (or inline (not value.hasRoute))}} {{value.name}} {{else}} <a href={{href-to route value}}> {{value.name}} </a> {{/if}} </span> {{else}} <span class="value empty"></span> {{/if}} </span>
<span class="output text"> {{#if value}} <span class="value"> {{#if (or inline (not value.hasViewRoute))}} {{value.name}} {{else}} <a href={{href-to route value}}> {{value.name}} </a> {{/if}} </span> {{else}} <span class="value empty"></span> {{/if}} </span>
Check for named route on belongsto
Check for named route on belongsto
Handlebars
mit
pjcarly/ember-mist-components,pjcarly/ember-mist-components,pjcarly/ember-mist-components
7bbfa9f68af3ef6d1d997ee5267f6a8bc97dc4d7
views/index.hbs
views/index.hbs
<div class="fb-login-button" data-max-rows="1" data-size="small" data-button-type="login_with" data-show-faces="true" data-auto-logout-link="false" data-use-continue-as="true"></div> <h1>{{title}}</h1> <p>Welcome to {{title}}</p> <p>Entries: <b>{{entries.length}}</b> <table> <thead> <tr> <th>Name</th> <th>Age</th> <th>Img</th> <th>Wiki URL</th> <th>ID</th> </tr> </thead> {{#each entries as |entry|}} <tr> <td>{{entry.fullName}}</td> <td>{{entry.age}}</td> <td><img src="{{entry.imgUrl}}"/></td> <td><a href="{{entry.wikiUrl}}">{{entry.wikiUrl}}</a></td> <td>{{entry.id}}</td> </tr> {{/each}} </table>
<h1>{{title}}</h1> <p>Welcome to {{title}}</p> <p>Entries: <b>{{entries.length}}</b> <table> <thead> <tr> <th>Name</th> <th>Age</th> <th>Img</th> <th>Wiki URL</th> <th>ID</th> </tr> </thead> {{#each entries as |entry|}} <tr> <td>{{entry.fullName}}</td> <td>{{entry.age}}</td> <td><img src="{{entry.imgUrl}}"/></td> <td><a href="{{entry.wikiUrl}}">{{entry.wikiUrl}}</a></td> <td>{{entry.id}}</td> </tr> {{/each}} </table>
Remove login with fb button
Remove login with fb button
Handlebars
mit
michael-lowe-nz/ageGuessAPI,michael-lowe-nz/ageGuessAPI
15e668656dd501c2e4907aeb8d044da0d4dd51c8
src/main/web/florence/templates/reportUnpublishedDetails.handlebars
src/main/web/florence/templates/reportUnpublishedDetails.handlebars
<div class="section-head"> <h2>{{name}}</h2> <p>[NOT PUBLISHED]</p> </div> <div class="section-content section-content--fullwidth"> <div class="accordion js-accordion"> <div class="accordion__title js-accordion__title"> <h3>Event history</h3> </div> <div class="accordion__content js-accordion__content disable-animation"> <p>Coming soon</p> </div> </div> </div>
<div class="section-head"> <h2>{{name}}</h2> <p>[NOT PUBLISHED]</p> </div> <div class="section-content section-content--fullwidth"> <div class="accordion js-accordion"> <div class="accordion__title js-accordion__title"> <h3>Event history</h3> </div> <div class="accordion__content js-accordion__content disable-animation"> <p>Coming soon</p> </div> </div> </div> <nav class="section-nav"> <button class="btn-collection-cancel">Cancel</button> </nav>
Add cancel button to unpublished report details
Add cancel button to unpublished report details
Handlebars
mit
ONSdigital/florence,ONSdigital/florence,ONSdigital/florence,ONSdigital/florence
aa686abb07659df1ac488c5c60d82ca49f5b4d8b
packages/image/addon/templates/components/field-editors/cardstack-image-editor.hbs
packages/image/addon/templates/components/field-editors/cardstack-image-editor.hbs
<div class="cardstack-image-editor"> {{#if (get content field "base64")}} <div class="cardstack-image-editor-filename"> Selected image: {{get (get content field) 'imageFileName'}} </div> {{/if}} <button class="cardstack-image-editor-button cardstack-image-editor-button--choose" {{action (perform chooseImage)}} disabled={{disabled}}> Choose {{#if (get content field 'base64')}}Another{{/if}} Image </button> {{#if (get content field "base64")}} <button class="cardstack-image-editor-button cardstack-image-editor-button--remove" {{action "removeImage"}} disabled={{disabled}}> Remove image </button> {{/if}} </div>
{{#let (get content field "base64") as |hasImage|}} <div class="cardstack-image-editor"> {{#if hasImage}} <div class="cardstack-image-editor-filename"> Selected image: {{get (get content field) 'imageFileName'}} </div> {{/if}} <button class="cardstack-image-editor-button cardstack-image-editor-button--choose" {{action (perform chooseImage)}} disabled={{disabled}}> Choose {{#if hasImage}}Another{{/if}} Image </button> {{#if hasImage}} <button class="cardstack-image-editor-button cardstack-image-editor-button--remove" {{action "removeImage"}} disabled={{disabled}}> Remove image </button> {{/if}} </div> {{/let}}
Make image-editor template more readable
Make image-editor template more readable
Handlebars
mit
cardstack/cardstack,cardstack/cardstack,cardstack/cardstack,cardstack/cardstack,cardstack/cardstack,cardstack/cardstack
a927dfb2c595716ea713de2837c10ca5b66b7c93
share/spice/in_theaters/subtitle_content.handlebars
share/spice/in_theaters/subtitle_content.handlebars
{{#if ratings.critics_score}} <span class="{{icon_class}}" style="background-image: url('{{icon_url}}'); background-position: {{icon_image}}"></span> {{ratings.critics_rating}}: {{ratings.critics_score}}% <span class="detail__separator"> | </span> {{/if}} {{#if runtime}} <span class="detail__cooking-time">Run Time: {{time runtime}}</span> <span class="detail__separator"> | </span> {{/if}} {{#if mpaa_rating}} <span class="detail__cooking-time">{{mpaa_rating}}</span> {{/if}}
{{#if ratings.critics_score}} <span class="{{icon_class}}" style="background-image: url('{{icon_url}}'); background-position: {{icon_image}}"></span> {{ratings.critics_rating}}: {{ratings.critics_score}}% <span class="detail__separator"> | </span> {{/if}} {{#if runtime}} <span class="detail__cooking-time">Run Time: {{InTheaters_time runtime}}</span> <span class="detail__separator"> | </span> {{/if}} {{#if mpaa_rating}} <span class="detail__cooking-time">{{mpaa_rating}}</span> {{/if}}
Call the correct helper function.
InTheaters: Call the correct helper function. The template was not calling the correct helper function which is why the detail view was failing.
Handlebars
apache-2.0
evejweinberg/zeroclickinfo-spice,claytonspinner/zeroclickinfo-spice,dogomedia/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,evejweinberg/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,claytonspinner/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-spice,Kakkoroid/zeroclickinfo-spice,Kr1tya3/zeroclickinfo-spice,P71/zeroclickinfo-spice,echosa/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,dheeraj143/zeroclickinfo-spice,samskeller/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,andrey-p/zeroclickinfo-spice,gautamkrishnar/zeroclickinfo-spice,mr-karan/zeroclickinfo-spice,lw7360/zeroclickinfo-spice,rubinovitz/zeroclickinfo-spice,Kr1tya3/zeroclickinfo-spice,bibliotechy/zeroclickinfo-spice,jyounker/zeroclickinfo-spice,echosa/zeroclickinfo-spice,timeanddate/zeroclickinfo-spice,rmad17/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,mayo/zeroclickinfo-spice,samskeller/zeroclickinfo-spice,lw7360/zeroclickinfo-spice,digit4lfa1l/zeroclickinfo-spice,bibliotechy/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,digit4lfa1l/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,dachinzo/zeroclickinfo-spice,dachinzo/zeroclickinfo-spice,jyounker/zeroclickinfo-spice,soleo/zeroclickinfo-spice,andrey-p/zeroclickinfo-spice,bdjnk/zeroclickinfo-spice,levaly/zeroclickinfo-spice,bibliotechy/zeroclickinfo-spice,ColasBroux/zeroclickinfo-spice,toenu23/zeroclickinfo-spice,evejweinberg/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice,jyounker/zeroclickinfo-spice,alexandernext/zeroclickinfo-spice,lerna/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,lernae/zeroclickinfo-spice,stennie/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,toenu23/zeroclickinfo-spice,dogomedia/zeroclickinfo-spice,rmad17/zeroclickinfo-spice,bdjnk/zeroclickinfo-spice,andrey-p/zeroclickinfo-spice,deserted/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,Kakkoroid/zeroclickinfo-spice,sevki/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,brianrisk/zeroclickinfo-spice,rmad17/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,tagawa/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,toenu23/zeroclickinfo-spice,stevenmg/zeroclickinfo-spice,digit4lfa1l/zeroclickinfo-spice,imwally/zeroclickinfo-spice,deserted/zeroclickinfo-spice,stennie/zeroclickinfo-spice,ScreapDK/zeroclickinfo-spice,P71/zeroclickinfo-spice,loganom/zeroclickinfo-spice,echosa/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,andrey-p/zeroclickinfo-spice,mohan08p/zeroclickinfo-spice,Kakkoroid/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,Dwaligon/zeroclickinfo-spice,Kr1tya3/zeroclickinfo-spice,andrey-p/zeroclickinfo-spice,samskeller/zeroclickinfo-spice,imwally/zeroclickinfo-spice,mayo/zeroclickinfo-spice,Faiz7412/zeroclickinfo-spice,deserted/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,echosa/zeroclickinfo-spice,mayo/zeroclickinfo-spice,Dwaligon/zeroclickinfo-spice,tagawa/zeroclickinfo-spice,lernae/zeroclickinfo-spice,digit4lfa1l/zeroclickinfo-spice,deserted/zeroclickinfo-spice,alexandernext/zeroclickinfo-spice,dogomedia/zeroclickinfo-spice,bibliotechy/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice,navjotahuja92/zeroclickinfo-spice,navjotahuja92/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,soleo/zeroclickinfo-spice,Queeniebee/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,brianrisk/zeroclickinfo-spice,bdjnk/zeroclickinfo-spice,lernae/zeroclickinfo-spice,alexandernext/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,sevki/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,sevki/zeroclickinfo-spice,imwally/zeroclickinfo-spice,mohan08p/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,soleo/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,rubinovitz/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,ppant/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,toenu23/zeroclickinfo-spice,sevki/zeroclickinfo-spice,Queeniebee/zeroclickinfo-spice,navjotahuja92/zeroclickinfo-spice,rubinovitz/zeroclickinfo-spice,imwally/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice,Faiz7412/zeroclickinfo-spice,stevenmg/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,lernae/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,dheeraj143/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,dachinzo/zeroclickinfo-spice,levaly/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,ScreapDK/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,rmad17/zeroclickinfo-spice,dachinzo/zeroclickinfo-spice,hshackathons/zeroclickinfo-spice,lerna/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,stevenmg/zeroclickinfo-spice,ScreapDK/zeroclickinfo-spice,claytonspinner/zeroclickinfo-spice,rmad17/zeroclickinfo-spice,loganom/zeroclickinfo-spice,rubinovitz/zeroclickinfo-spice,dogomedia/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,Queeniebee/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice,dogomedia/zeroclickinfo-spice,Kr1tya3/zeroclickinfo-spice,lw7360/zeroclickinfo-spice,echosa/zeroclickinfo-spice,bdjnk/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,lerna/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-spice,levaly/zeroclickinfo-spice,levaly/zeroclickinfo-spice,ColasBroux/zeroclickinfo-spice,gautamkrishnar/zeroclickinfo-spice,soleo/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,loganom/zeroclickinfo-spice,alexandernext/zeroclickinfo-spice,dheeraj143/zeroclickinfo-spice,timeanddate/zeroclickinfo-spice,ppant/zeroclickinfo-spice,stennie/zeroclickinfo-spice,soleo/zeroclickinfo-spice,mohan08p/zeroclickinfo-spice,tagawa/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,tagawa/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,levaly/zeroclickinfo-spice,brianrisk/zeroclickinfo-spice,hshackathons/zeroclickinfo-spice,ColasBroux/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,ppant/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,ScreapDK/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,lernae/zeroclickinfo-spice,Queeniebee/zeroclickinfo-spice,imwally/zeroclickinfo-spice,jyounker/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,dheeraj143/zeroclickinfo-spice,ColasBroux/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,Kakkoroid/zeroclickinfo-spice,lernae/zeroclickinfo-spice,Dwaligon/zeroclickinfo-spice,claytonspinner/zeroclickinfo-spice,mohan08p/zeroclickinfo-spice,mr-karan/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,samskeller/zeroclickinfo-spice,mr-karan/zeroclickinfo-spice,Kr1tya3/zeroclickinfo-spice,P71/zeroclickinfo-spice,gautamkrishnar/zeroclickinfo-spice,Kakkoroid/zeroclickinfo-spice,hshackathons/zeroclickinfo-spice,navjotahuja92/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,Faiz7412/zeroclickinfo-spice,lerna/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,Dwaligon/zeroclickinfo-spice,gautamkrishnar/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,loganom/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,soleo/zeroclickinfo-spice,deserted/zeroclickinfo-spice,Faiz7412/zeroclickinfo-spice,brianrisk/zeroclickinfo-spice,timeanddate/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice,lw7360/zeroclickinfo-spice,hshackathons/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,brianrisk/zeroclickinfo-spice,stennie/zeroclickinfo-spice,levaly/zeroclickinfo-spice,lerna/zeroclickinfo-spice,ScreapDK/zeroclickinfo-spice,mayo/zeroclickinfo-spice,stevenmg/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,mr-karan/zeroclickinfo-spice,mr-karan/zeroclickinfo-spice,ppant/zeroclickinfo-spice,P71/zeroclickinfo-spice,deserted/zeroclickinfo-spice,evejweinberg/zeroclickinfo-spice,tagawa/zeroclickinfo-spice,timeanddate/zeroclickinfo-spice
0879942eaffcc03425c1f022a9b892b0e7c881b6
app/assets/javascripts/web/templates/messages.js.handlebars
app/assets/javascripts/web/templates/messages.js.handlebars
<div class="messages"> {{#each this}} {{render 'message' this.content}} {{/each}} </div> <form class="new-message" {{action 'saveMessage' on='submit'}}> <div class="row"> <div class="12-large 12-small columns"> {{textarea value=currentMessage.content}} </div> </div> </form>
<div class="messages"> <br/> {{#each this}} {{render 'message' this.content}} {{/each}} </div> <form class="new-message" {{action 'saveMessage' on='submit'}}> <div class="row"> <div class="12-large 12-small columns"> {{textarea value=currentMessage.content}} </div> </div> </form>
Add one line break to messages.
Add one line break to messages.
Handlebars
mit
cloudsdaleapp/cloudsdale-web,cloudsdaleapp/cloudsdale-web,cloudsdaleapp/cloudsdale-web,cloudsdaleapp/cloudsdale-web
7c1de516f23f309e15148f68591c422fff0cc16b
src/main/web/templates/handlebars/highcharts/config/heatmap-chart-config.handlebars
src/main/web/templates/handlebars/highcharts/config/heatmap-chart-config.handlebars
{{#partial "chart-config"}} options.chart.type= "heatmap"; options.legend.enabled = false; options.xAxis= { categories: [{{#each categories}}'{{{sub (sup this)}}}',{{/each}}], }; options.yAxis= { categories: [{{#each series}}'{{{sub (sup this)}}}',{{/each}}], title: null }; options.colorAxis= { min: 0, minColor: '#FFFFFF', maxColor: Highcharts.getOptions().colors[0] }; options.series=[ { borderWidth: 1, data: [ {{#each data as |datum line|}} {{#each series as |header col|}} [ {{line}}, {{col}}, {{num (lookup this header)}}], {{/each}} {{/each}} ], dataLabels: { enabled: true, color: '#000000' } } ]; options.tooltip = { formatter: function () { return '<b>' + this.series.xAxis.categories[this.point.x] + '</b>: <br>' + this.series.yAxis.categories[this.point.y] + ', ' + this.point.value; } }; {{/partial}} {{!-- This denotes the template inherits from base-chart-config--}} {{> highcharts/config/base/base-chart-config}}
{{#partial "chart-config"}} options.chart.type= "heatmap"; options.xAxis= { categories: [{{#each categories}}'{{{sub (sup this)}}}',{{/each}}], }; options.yAxis= { categories: [{{#each series}}'{{{sub (sup this)}}}',{{/each}}], title: null }; options.colorAxis= { min: base, minColor: '#ffffff', maxColor: palette[0] }; options.legend = { enabled:true, align: 'right', layout: 'vertical', margin: 50, verticalAlign: 'top', y: 25, symbolHeight: 280 }; options.series=[ { borderWidth: 1, data: [ {{#each data as |datum line|}} {{#each series as |header col|}} [ {{line}}, {{col}}, {{num (lookup this header)}}], {{/each}} {{/each}} ], dataLabels: { enabled: true, color: '#000000' } } ]; options.tooltip = { formatter: function () { return '<b>' + this.series.xAxis.categories[this.point.x] + '</b>: <br>' + this.series.yAxis.categories[this.point.y] + ', ' + this.point.value; } }; {{/partial}} {{!-- This denotes the template inherits from base-chart-config--}} {{> highcharts/config/base/base-chart-config}}
Add legend to heat map
Add legend to heat map work-in-progress
Handlebars
mit
ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage
d6a52b2001950719b086f9ebb42285045ff4c863
client/source/templates/routes/list.hbs
client/source/templates/routes/list.hbs
<h1>Routes</h1> <a class="btn btn-default" href="#new">New Route</a> <div class="editRoute"></div> {{#each items}} <div class="route row" data-route-id="{{id}}"> <h2><a href="#edit">{{highlightWildcards urlPattern}}</a> <a href="#delete" class="btn btn-link btn-icon">{{icon 'trash'}}</a></h2> <p class="text-muted">↳ <code><a href="/{{adminSegment}}/templates/{{template}}">{{template}}</a></code></p> </div> {{/each}}
<h1>Routes</h1> <a class="btn btn-default" href="#new">New Route</a> <div class="editRoute"></div> {{#each items}} <div class="route" data-route-id="{{id}}"> <h2><a href="#edit">{{highlightWildcards urlPattern}}</a> <a href="#delete" class="btn btn-link btn-icon">{{icon 'trash'}}</a></h2> <p class="text-muted">↳ <code><a href="/{{adminSegment}}/templates/{{template}}">{{template}}</a></code></p> </div> {{/each}}
Fix extra .row on Routes
Fix extra .row on Routes
Handlebars
agpl-3.0
nishant8BITS/buckets,artelse/buckets,dut3062796s/buckets,asm-products/buckets,bucketsio/buckets,artelse/buckets,edolyne/hive,asm-products/buckets,bucketsio/buckets,mikesmithmsm/buckets,dut3062796s/buckets,mamute/buckets,mamute/buckets,nishant8BITS/buckets,edolyne/buckets,edolyne/buckets,mikesmithmsm/buckets,edolyne/hive
7b78dded701f16e9ccdafe8ceea3e31532214099
src-backbone/app/js/templates/builder/builderHeaderView.hbs
src-backbone/app/js/templates/builder/builderHeaderView.hbs
<div class="meta"> <div class="group"> <label for="change-title">{{ i18n "Title" }}</label> <input type="text" title="{{ i18n "Change the title of this procedure" }}" name="change-title" id="change-title" class="form-control" value="{{ title }}"> </div> <div class="group"> <label for="change-author">{{ i18n "Author" }}</label> <input type="text" title="{{ i18n "Change the author(s) of this procedure" }}" name="change-author" id="change-author" class="form-control" value="{{ author }}"> </div> </div> <div class="meta" id="button-container"> <a id="save-btn" class="btn btn-success"> <span class="glyphicon glyphicon-floppy-disk" aria-hidden="true"></span> {{ i18n "Save Procedure" }} </a> <a id="download-btn" class="btn btn-default"> <span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span> {{ i18n "Download" }} </a> </div>
<div class="meta"> <div class="group"> <label for="change-title">{{ i18n "Title" }}</label> <input type="text" title="{{ i18n "Change the title of this procedure" }}" name="change-title" id="change-title" class="form-control" value="{{ title }}"> </div> <div class="group"> <label for="change-author">{{ i18n "Author" }}</label> <input type="text" title="{{ i18n "Change the author(s) of this procedure" }}" name="change-author" id="change-author" class="form-control" value="{{ author }}"> </div> </div> <div class="meta" id="button-container"> <a id="save-btn" class="btn btn-success"> <span class="glyphicon glyphicon-floppy-disk" aria-hidden="true"></span> {{ i18n "Save Procedure" }} </a> <a id="download-btn" class="btn btn-default"> <span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span> {{ i18n "Download XML" }} </a> </div>
Change the "Download" button to "Download XML" in the builder
Change the "Download" button to "Download XML" in the builder
Handlebars
bsd-3-clause
SanaMobile/sana.protocol_builder,SanaMobile/sana.protocol_builder,SanaMobile/sana.protocol_builder,SanaMobile/sana.protocol_builder,SanaMobile/sana.protocol_builder
b240a0f5c3b97328774e89b9ee046f769592940d
app/views/jst/groups/manage/randomlyAssignMembers.handlebars
app/views/jst/groups/manage/randomlyAssignMembers.handlebars
<div class="form-dialog-content"> <p tabindex="0"> {{#t "randomly_assign_students_dialog"}} This will automatically assign all unassigned students as evenly as possible among the existing student groups. {{/t}} </p> <div class="controls group-by-section-controls"> <label class="checkbox" for="group_by_section"> {{checkbox "group_by_section"}} {{#t}}Require group members to be in the same section{{/t}} </label> </div> </div> <div class="form-controls"> <button type="button" class="btn dialog_closer" >{{#t "cancel"}}Cancel{{/t}}</button> <button class="btn btn-primary randomly-assign-members-confirm" type='submit'>{{#t}}Okay{{/t}}</button> </div>
<div class="form-dialog-content"> <p> {{#t "randomly_assign_students_dialog"}} This will automatically assign all unassigned students as evenly as possible among the existing student groups. {{/t}} </p> <div class="controls group-by-section-controls"> <label class="checkbox" for="group_by_section"> {{checkbox "group_by_section"}} {{#t}}Require group members to be in the same section{{/t}} </label> </div> </div> <div class="form-controls"> <button type="button" class="btn dialog_closer" >{{#t "cancel"}}Cancel{{/t}}</button> <button class="btn btn-primary randomly-assign-members-confirm" type='submit'>{{#t}}Okay{{/t}}</button> </div>
Remove tabstop from para of text
Remove tabstop from para of text fixes ADMIN-1554 Fixed, but noticed that the checkbox does not get the visual focus ring. The relevant css is at line 173, app/stylesheets/vendor/bootstrap/_forms.scss I'm hesitant to change css that will have such a wide effect in this ticket. test plan: - Navigate to the People page of a course with several students - Create a new group set - Create two groups to the set - In the kebab menu next to +Group choose Randomly Assign Students - Tab through the modal > Expect that focus does not land on the text Change-Id: I99e0c9923a5c8f966bf44a8a963084002e57c08e Reviewed-on: https://gerrit.instructure.com/169452 Tested-by: Jenkins Reviewed-by: Jon Willesen <0321efbc0acf6204eb6035acb1d418838b450d08@instructure.com> QA-Review: Jon Willesen <0321efbc0acf6204eb6035acb1d418838b450d08@instructure.com> Product-Review: Ed Schiebel <0ca8a83847a5889cf05cb219c0ab09f6b646243b@instructure.com>
Handlebars
agpl-3.0
sfu/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,djbender/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,djbender/canvas-lms,sfu/canvas-lms,djbender/canvas-lms,sfu/canvas-lms,djbender/canvas-lms
146918b4a65779c440b52ec8211ee84feb8c76ea
public/js/app/templates/groupsNewTemplate.handlebars
public/js/app/templates/groupsNewTemplate.handlebars
<div class="col-md-12"> <h2 class="p-create-new-group-header">Create new group</h2> <p class="p-create-new-group-description">Pepyatka feeds are extremely flexible. They can even be used to share privately with a group or as a discussion forums. <a>Learn more about feeds</a></p> {{#if errors}} <div class="alert alert-danger p-create-new-group-error" role="alert"> <span>Error:</span> <span id="error-message">{{errors}}</span> </div> {{/if}} <div class="row"> <div class="col-md-6"> <form action="/groups" method="post" class="p-create-new-group-form"> <div class="form-group p-create-new-group-name"> <label for="screenName">Name</label> {{input id="screenName" name="screenName" value=screenName class="form-control"}} </div> <div class="form-group p-create-new-group-username"> <label for="username">Username</label> {{input id="username" value=username type="text" class="form-control"}} </div> <div class="form-group p-create-new-group-action"> <button {{action "create"}} class="btn btn-default p-create-feed">Create group</button> </div> </form> </div> </div> </div>
<div class="col-md-12"> <h2 class="p-create-new-group-header">Create new group</h2> <p class="p-create-new-group-description">Freefeed group is just a feed, but multiple users can contribute to its contents. Everyone in the group can share stuff with each other and leave comments that others in the group can see.</p> {{#if errors}} <div class="alert alert-danger p-create-new-group-error" role="alert"> <span>Error:</span> <span id="error-message">{{errors}}</span> </div> {{/if}} <div class="row"> <div class="col-md-6"> <form action="/groups" method="post" class="p-create-new-group-form"> <div class="form-group p-create-new-group-name"> <label for="screenName">Name</label> {{input id="screenName" name="screenName" value=screenName class="form-control"}} </div> <div class="form-group p-create-new-group-username"> <label for="username">Username</label> {{input id="username" value=username type="text" class="form-control"}} </div> <div class="form-group p-create-new-group-action"> <button {{action "create"}} class="btn btn-default p-create-feed">Create group</button> </div> </form> </div> </div> </div>
Change groups description text to be more like FrF.
Change groups description text to be more like FrF. Don't mention private groups as they are not implemented yet.
Handlebars
mit
FreeFeed/freefeed-html,FreeFeed/freefeed-html,dsumin/freefeed-html,dsumin/freefeed-html,davidmz/pepyatka-html,davidmz/pepyatka-html
65b4d3fcda2207e9913292621929d533be0ce33b
xgds_planner2/templates/handlebars/tabnav.handlebars
xgds_planner2/templates/handlebars/tabnav.handlebars
<ul id="tab-nav" class="row nav nav-tabs"> <li class="active" data-target="meta"><a>Meta</a></li> <li data-target="sequence"><a>Sequence</a></li> <li data-target="layers"><a>Layers</a></li> <li data-target="tools"><a>Tools</a></li> </ul> <div id="tab-content" class="row tab-content" style="margin-left: inherit;"> </div>
<ul id="tab-nav" class="row nav nav-tabs"> <li class="active" data-target="meta"><a>Meta</a></li> <li data-target="sequence"><a>Sequence</a></li> <li data-target="layers"><a>Layers</a></li> <!-- <li data-target="tools"><a>Tools</a></li> --> </ul> <div id="tab-content" class="row tab-content" style="margin-left: inherit;"> </div>
Disable tools tab ( since it has no content right now.)
Disable tools tab ( since it has no content right now.)
Handlebars
apache-2.0
xgds/xgds_planner2,xgds/xgds_planner2,xgds/xgds_planner2,xgds/xgds_planner2
be9bbfdd324ef57e29cfb1d787e36e8a7de0dc7e
app/assets/javascripts/rglossa/templates/cwb/result/table.hbs
app/assets/javascripts/rglossa/templates/cwb/result/table.hbs
<div class="row-fluid search-result-table-container"> <table class="table table-striped table-bordered"> {{#each result in arrangedContent itemController="resultRow"}} <tr> {{#if result.sId}} <td>{{{result.sId}}}</td> {{/if}} {{#if corpusHasSound}} <td class="span1"> <button class="btn"><i class="icon-volume-up" {{action toggleJplayer}}></i></button> </td> {{/if}} <td>{{{result.preMatch}}}</td> <td>{{{result.match}}}</td> <td>{{{result.postMatch}}}</td> </tr> {{#if isShowingSound}} <tr> <td colspan="10"> {{j-player mediaObj=result}} </td> </tr> {{/if}} {{/each}} </table> </div>
<div class="row-fluid search-result-table-container"> <table class="table table-striped table-bordered"> {{#each result in arrangedContent itemController="resultRow"}} <tr> {{#if result.sId}} <td>{{{result.sId}}}</td> {{/if}} {{#if corpusHasSound}} <td class="span1"> <button class="btn" {{action toggleJplayer}}><i class="icon-volume-up"></i></button> </td> {{/if}} <td>{{{result.preMatch}}}</td> <td>{{{result.match}}}</td> <td>{{{result.postMatch}}}</td> </tr> {{#if isShowingSound}} <tr> <td colspan="10"> {{j-player mediaObj=result}} </td> </tr> {{/if}} {{/each}} </table> </div>
Put action on the entire button instead of just the icon
Put action on the entire button instead of just the icon
Handlebars
mit
textlab/rglossa,textlab/glossa,textlab/glossa,textlab/rglossa,textlab/glossa,textlab/glossa,textlab/rglossa,textlab/glossa,textlab/rglossa,textlab/rglossa
4bc7ce50d2dcda3ee0bd815b545bf80fec672c9c
app/places/templates/categories.handlebars
app/places/templates/categories.handlebars
{{! NOTE: Take careful care with the namespacing in here, it's a bit of a mess. }} <input type="text" placeholder="Places search" name="q" value="{{query}}"> <span class="deleteicon ss-icon">delete</span> <ul class="results-list"> {{#types}} {{#if types}} {{! If this category has any sub-categories, place a link to them }} {{#if ../../category_name}} <a href="#places/categories/{{ ../../../category_name }}/{{ type }}"><li><h3>{{ type_name }}</h3></li></a> {{else}} <a href="#places/categories/{{ type }}"><li><h3>{{ type_name }}</h3></li></a> {{/if}} {{else}} <a href="#places/search?type=/{{ ../../category_name }}/{{ type }}"><li><h3>{{ type_name }}</h3></li></a> {{/if}} {{/types}} </ul>
{{! NOTE: Take careful care with the namespacing in here, it's a bit of a mess. }} <input type="text" placeholder="Places search" name="q" value="{{query}}"> <span class="deleteicon ss-icon">delete</span> <ul class="results-list"> {{#types}} {{#if types}} {{! If this category has any sub-categories, place a link to them }} {{#if ../../category_name}} <a data-category="{{ ../../../category_name }}/{{ type }}" href="#places/categories/{{ ../../../category_name }}/{{ type }}"><li><h3>{{ type_name }}</h3></li></a> {{else}} <a data-category="{{ type }}" href="#places/categories/{{ type }}"><li><h3>{{ type_name }}</h3></li></a> {{/if}} {{else}} <a href="#places/search?type=/{{ ../../category_name }}/{{ type }}"><li><h3>{{ type_name }}</h3></li></a> {{/if}} {{/types}} </ul>
Set a data attribute on each category to help navigating.
Set a data attribute on each category to help navigating.
Handlebars
apache-2.0
ox-it/moxie-js-client,ox-it/moxie-js-client,ox-it/moxie-js-client,ox-it/moxie-js-client
a9d7d22dc3333c5c9f138f8acbf8be701b4cc803
app/assets/javascripts/rglossa/templates/cwb/search_inputs.hbs
app/assets/javascripts/rglossa/templates/cwb/search_inputs.hbs
{{#if isShowingSimple}} <div class="row-fluid search-input-links"> <b>Simple</b> | <a href="" title="Search for grammatical categories etc." {{action showMultiword}}>Extended</a> | <a href="" title="Regular expressions" {{action showRegex}}>Advanced</a> </div> {{#each row in controller}} {{cwb-simple query=row.query corpusShortName=row.corpusShortName}} {{/each}} {{else}} {{#if isShowingMultiword}} <div class="row-fluid search-input-links"> <a href="" title="Simple search box" {{action showSimple}}>Simple</a> | <b>Extended</b> | <a href="" title="Regular expressions" {{action showRegex}}>Advanced</a> </div> {{#each row in controller}} {{cwb-multiword query=row.query corpusShortName=row.corpusShortName posAttr=row.posAttr tags=row.tags}} {{/each}} {{else}} <div class="row-fluid search-input-links"> <a href="" title="Simple search box" {{action showSimple}}>Simple</a> | <a href="" title="Search for grammatical categories etc." {{action showMultiword}}>Extended</a> | <b>Advanced</b> </div> {{#each row in controller}} {{cwb-regex query=row.query corpusShortName=row.corpusShortName}} {{/each}} {{/if}} {{/if}}
{{#if isShowingSimple}} <div class="row-fluid search-input-links"> <b>Simple</b> | <a href="" title="Search for grammatical categories etc." {{action showMultiword}}>Extended</a> | <a href="" title="Regular expressions" {{action showRegex}}>Regexp</a> </div> {{#each row in controller}} {{cwb-simple query=row.query corpusShortName=row.corpusShortName}} {{/each}} {{else}} {{#if isShowingMultiword}} <div class="row-fluid search-input-links"> <a href="" title="Simple search box" {{action showSimple}}>Simple</a> | <b>Extended</b> | <a href="" title="Regular expressions" {{action showRegex}}>Regexp</a> </div> {{#each row in controller}} {{cwb-multiword query=row.query corpusShortName=row.corpusShortName posAttr=row.posAttr tags=row.tags}} {{/each}} {{else}} <div class="row-fluid search-input-links"> <a href="" title="Simple search box" {{action showSimple}}>Simple</a> | <a href="" title="Search for grammatical categories etc." {{action showMultiword}}>Extended</a> | <b>Regexp</b> </div> {{#each row in controller}} {{cwb-regex query=row.query corpusShortName=row.corpusShortName}} {{/each}} {{/if}} {{/if}}
Rename Advanced view to Regexp
Rename Advanced view to Regexp This signals that technical knowledge is needed
Handlebars
mit
textlab/rglossa,textlab/glossa,textlab/glossa,textlab/rglossa,textlab/glossa,textlab/rglossa,textlab/glossa,textlab/glossa,textlab/rglossa,textlab/rglossa
6286caa5a7510e00631a82a5688c82d42b6c32c3
views/partials/buttons/sizes.handlebars
views/partials/buttons/sizes.handlebars
<div> <style scoped> .button-xsmall { font-size: 70%; } .button-small { font-size: 85%; } .button-large { font-size: 110%; } .button-xlarge { font-size: 125%; } </style> <button class="button-xsmall pure-button">Extra Small Button</button> <button class="button-small pure-button">Small Button</button> <button class="pure-button pure-button">Regular Button</button> <button class="button-large pure-button">Large Button</button> <button class="button-xlarge pure-button">Extra Large Button</button> </div>
<div> <style scoped> .button-xsmall { font-size: 70%; } .button-small { font-size: 85%; } .button-large { font-size: 110%; } .button-xlarge { font-size: 125%; } </style> <button class="button-xsmall pure-button">Extra Small Button</button> <button class="button-small pure-button">Small Button</button> <button class="pure-button">Regular Button</button> <button class="button-large pure-button">Large Button</button> <button class="button-xlarge pure-button">Extra Large Button</button> </div>
Remove duplicate class in button documentation
Remove duplicate class in button documentation The pure-button class is applied twice on a regular button in the sizes.handlebars partial.
Handlebars
bsd-3-clause
yahoo/pure-site,jamesalley/pure-site,yahoo/pure-site,weigang992003/pure-css-chinese,weigang992003/pure-css-chinese,jamesalley/pure-site
9bd6c83f394c8c11d621f4fe9d4b66569d7fb1a0
addon/templates/components/simple-table-header-row.hbs
addon/templates/components/simple-table-header-row.hbs
<tr class={{trClass}}> {{#each columnsArray as |columns| }} <th class="{{thClass}}" > {{#each columns as |column|}} {{#if hasBlock}} {{yield (hash name=column.name sortable=column.sortable sortingOrder=(simple-table-sorting-class sortingCriteria column.key) sortAction=(action "sortBy" column.key) )}} {{else}} <div class="th-inner"> {{#if column.sortable}} <span class="sortable {{simple-table-sorting-class sortingCriteria column.key}}" onclick={{action 'sortBy' column.key}}> {{column.name}} <i class="sort-arrow"></i> </span> {{else}} <span> {{column.name}} </span> {{/if}} </div> {{/if}} {{/each}} </th> {{/each}} </tr>
<tr class={{trClass}}> {{#each columnsArray as |columns| }} <th class="{{thClass}}" > <div class="th-inner"> {{#each columns as |column|}} {{#if hasBlock}} {{yield (hash name=column.name sortable=column.sortable sortingOrder=(simple-table-sorting-class sortingCriteria column.key) sortAction=(action "sortBy" column.key) )}} {{else}} {{#if column.sortable}} <span class="sortable {{simple-table-sorting-class sortingCriteria column.key}}" onclick={{action 'sortBy' column.key}}> {{column.name}} <i class="sort-arrow"></i> </span> {{else}} <span> {{column.name}} </span> {{/if}} {{/if}} {{/each}} </div> </th> {{/each}} </tr>
Fix mess up with wrapper div
Fix mess up with wrapper div
Handlebars
mit
Baltazore/ember-simple-table,Baltazore/ember-simple-table
3d7a851bf56370d5b832af42b0a1e7b7339ef490
app/templates/components/pending-owner-invite-row.hbs
app/templates/components/pending-owner-invite-row.hbs
<div class='row'> {{#if isAccepted }} <p>Success! You've been added as an owner of crate {{#link-to 'crate' invite.crate_name}}{{invite.crate_name}}{{/link-to}}. </p> {{else if isDeclined}} <p>Declined. You have not been added as an owner of crate {{#link-to 'crate' invite.crate_name}}{{invite.crate_name}}{{/link-to}}. </p> {{else}} <div class='info'> <div class='name'> <h3> {{#link-to 'crate' invite.crate_name}} {{invite.crate_name}} {{/link-to}} </h3> </div> <div class='invite'> <p>Invited by: {{#link-to 'user' invite.invited_by_username}} {{invite.invited_by_username}} {{/link-to}} </p> </div> <div class='sent'> <span class='small'>{{moment-from-now invite.created_at}}</span> </div> <div class='actions'> <button class='small yellow-button' {{action 'acceptInvitation' invite}}>Accept</button> <button class='small yellow-button' {{action 'declineInvitation' invite}}>Deny</button> </div> {{#if isError}} <div class='label'> <p class='small-text'>{{inviteError}}</p> </div> {{/if}} </div> {{/if}} </div>
<div class='row'> {{#if isAccepted }} <p>Success! You've been added as an owner of crate {{#link-to 'crate' invite.crate_name}}{{invite.crate_name}}{{/link-to}}. </p> {{else if isDeclined}} <p>Declined. You have not been added as an owner of crate {{#link-to 'crate' invite.crate_name}}{{invite.crate_name}}{{/link-to}}. </p> {{else}} <div class='info'> <div class='name'> <h3> {{#link-to 'crate' invite.crate_name}} {{invite.crate_name}} {{/link-to}} </h3> </div> <div class='invite'> <p>Invited by: {{#link-to 'user' invite.invited_by_username}} {{invite.invited_by_username}} {{/link-to}} </p> </div> <div class='sent'> <span class='small'>{{moment-from-now invite.created_at}}</span> </div> <div class='actions'> <button class='small yellow-button' {{action 'acceptInvitation' invite}}>Accept</button> <button class='small yellow-button' {{action 'declineInvitation' invite}}>Decline</button> </div> {{#if isError}} <div class='label'> <p class='small-text'>{{inviteError}}</p> </div> {{/if}} </div> {{/if}} </div>
Change button from deny to decline
Change button from deny to decline
Handlebars
apache-2.0
rust-lang/crates.io,rust-lang/crates.io,rust-lang/crates.io,rust-lang/crates.io
b01b7454cd50524fdd2c6bbc95a897bb2252ecd0
templates/-publish-bar.hbs
templates/-publish-bar.hbs
<footer id="publish-bar"> <nav> {{view "editor-tags" tagName="section" id="entry-tags" class="left"}} <div class="right"> <section id="entry-controls"> {{#gh-popover-button popoverName="post-settings-menu" tagName="a" href="#" classNames="post-settings" title="Post Settings"}} <span class="hidden">Post Settings</span> {{/gh-popover-button}} {{#gh-popover name="post-settings-menu" classNames="post-settings-menu menu-right"}} {{render "post-settings-menu" model}} {{/gh-popover}} </section> {{view "editor-save-button" id="entry-actions"}} </div> </nav> </footer>
<footer id="publish-bar"> <nav> {{view "editor-tags" tagName="section" id="entry-tags" class="left"}} <div class="right"> <section id="entry-controls" {{bind-attr class="isNew:unsaved"}}> {{#gh-popover-button popoverName="post-settings-menu" tagName="a" href="#" classNames="post-settings" title="Post Settings"}} <span class="hidden">Post Settings</span> {{/gh-popover-button}} {{#gh-popover name="post-settings-menu" classNames="post-settings-menu menu-right"}} {{render "post-settings-menu" model}} {{/gh-popover}} </section> {{view "editor-save-button" id="entry-actions"}} </div> </nav> </footer>
Remove "Delete This Post" option from New Post publish bar menu items
Remove "Delete This Post" option from New Post publish bar menu items closes #3025 - adds 'unsaved' class to entry-controls when the post model/controller isNew evaluates to true
Handlebars
mit
airycanon/Ghost-Admin,dbalders/Ghost-Admin,acburdine/Ghost-Admin,kevinansfield/Ghost-Admin,JohnONolan/Ghost-Admin,TryGhost/Ghost-Admin,JohnONolan/Ghost-Admin,kevinansfield/Ghost-Admin,dbalders/Ghost-Admin,airycanon/Ghost-Admin,acburdine/Ghost-Admin,TryGhost/Ghost-Admin
75bdbf97a8ed8764383c512be923da3b529c2943
app/scripts/app/templates/errors/browser_unsupported.hbs
app/scripts/app/templates/errors/browser_unsupported.hbs
<div class="error"> <p>We're really sorry, but your browser is not supported.<br>Please use the latest <b>Chrome</b>, <b>Opera</b> or <b>Firefox</b>.</p> </div>
<div class="error"> <p>We're really sorry, but your browser is not supported.<br>Please use the latest desktop or Android version of<br><b>Chrome</b>, <b>Opera</b> or <b>Firefox</b>.</p> </div>
Add info that Chrome on iOS is not supported
Add info that Chrome on iOS is not supported
Handlebars
mit
cowbell/sharedrop,cowbell/sharedrop,rogervaas/sharedrop,umeshjakhar/sharedrop,shelsonjava/sharedrop,rogervaas/sharedrop,shelsonjava/sharedrop,umeshjakhar/sharedrop,shelsonjava/sharedrop
ba762dbac5e49663921267dc9d6a3556d8d073b6
zephyr/static/templates/message_info_popover_content.handlebars
zephyr/static/templates/message_info_popover_content.handlebars
{{! Contents of the "message info" popup }} <ul class="nav nav-list actions_popover"> <div class="popover_info"> <li>Sent by <b>{{message.sender_full_name}}</b></li> <li class='my_email'>{{message.sender_email}}</li> <hr /> <li>{{message.full_date_str}}</li> <li>{{message.full_time_str}}</li> {{#if message.historical}} <li class="small">(Message sent when you were not subscribed)</li> {{/if}} <hr /> </div> </ul>
{{! Contents of the "message info" popup }} <ul class="nav nav-list actions_popover"> <div class="popover_info"> <li>Sent by <b>{{message.sender_full_name}}</b></li> <li class='my_email'>{{message.sender_email}}</li> <hr /> <li>{{message.full_date_str}}</li> <li>{{message.full_time_str}}</li> {{#if message.historical}} <li class="small">(Message sent when you were not subscribed)</li> {{/if}} </div> </ul>
Remove stray <hr> at the bottom of the message info popover.
Remove stray <hr> at the bottom of the message info popover. (imported from commit 9283fcb13b2a3deb265ead9da3f2b3b9b05853cb)
Handlebars
apache-2.0
johnnygaddarr/zulip,Frouk/zulip,EasonYi/zulip,kou/zulip,tbutter/zulip,zulip/zulip,mdavid/zulip,wweiradio/zulip,andersk/zulip,ApsOps/zulip,KJin99/zulip,itnihao/zulip,LAndreas/zulip,sonali0901/zulip,hafeez3000/zulip,punchagan/zulip,gigawhitlocks/zulip,xuxiao/zulip,johnny9/zulip,Suninus/zulip,technicalpickles/zulip,mohsenSy/zulip,rishig/zulip,so0k/zulip,isht3/zulip,seapasulli/zulip,xuanhan863/zulip,LeeRisk/zulip,ikasumiwt/zulip,stamhe/zulip,jphilipsen05/zulip,shubhamdhama/zulip,dawran6/zulip,rht/zulip,proliming/zulip,moria/zulip,bowlofstew/zulip,firstblade/zulip,jrowan/zulip,rishig/zulip,punchagan/zulip,bowlofstew/zulip,Jianchun1/zulip,JPJPJPOPOP/zulip,adnanh/zulip,gigawhitlocks/zulip,avastu/zulip,rishig/zulip,JanzTam/zulip,Batterfii/zulip,Diptanshu8/zulip,so0k/zulip,timabbott/zulip,jeffcao/zulip,zacps/zulip,gigawhitlocks/zulip,Batterfii/zulip,shaunstanislaus/zulip,esander91/zulip,TigorC/zulip,alliejones/zulip,ashwinirudrappa/zulip,jimmy54/zulip,amallia/zulip,shrikrishnaholla/zulip,amyliu345/zulip,showell/zulip,amyliu345/zulip,KJin99/zulip,adnanh/zulip,esander91/zulip,Gabriel0402/zulip,TigorC/zulip,DazWorrall/zulip,grave-w-grave/zulip,wangdeshui/zulip,Vallher/zulip,susansls/zulip,voidException/zulip,kokoar/zulip,brockwhittaker/zulip,yuvipanda/zulip,tiansiyuan/zulip,jessedhillon/zulip,wweiradio/zulip,tdr130/zulip,zofuthan/zulip,jessedhillon/zulip,arpith/zulip,Galexrt/zulip,MayB/zulip,RobotCaleb/zulip,guiquanz/zulip,Cheppers/zulip,shrikrishnaholla/zulip,PhilSk/zulip,Suninus/zulip,samatdav/zulip,jerryge/zulip,praveenaki/zulip,natanovia/zulip,amallia/zulip,niftynei/zulip,Frouk/zulip,JanzTam/zulip,so0k/zulip,RobotCaleb/zulip,levixie/zulip,bssrdf/zulip,jackrzhang/zulip,dxq-git/zulip,joshisa/zulip,rht/zulip,Vallher/zulip,natanovia/zulip,niftynei/zulip,jackrzhang/zulip,jonesgithub/zulip,vabs22/zulip,atomic-labs/zulip,babbage/zulip,amanharitsh123/zulip,dattatreya303/zulip,Qgap/zulip,peguin40/zulip,babbage/zulip,Vallher/zulip,shrikrishnaholla/zulip,dwrpayne/zulip,dawran6/zulip,vakila/zulip,Cheppers/zulip,adnanh/zulip,Drooids/zulip,huangkebo/zulip,zofuthan/zulip,deer-hope/zulip,huangkebo/zulip,DazWorrall/zulip,zwily/zulip,stamhe/zulip,aakash-cr7/zulip,mahim97/zulip,hustlzp/zulip,Frouk/zulip,moria/zulip,cosmicAsymmetry/zulip,dxq-git/zulip,synicalsyntax/zulip,mahim97/zulip,natanovia/zulip,luyifan/zulip,hackerkid/zulip,dotcool/zulip,RobotCaleb/zulip,firstblade/zulip,zofuthan/zulip,Jianchun1/zulip,wavelets/zulip,LAndreas/zulip,hafeez3000/zulip,adnanh/zulip,dattatreya303/zulip,Juanvulcano/zulip,yuvipanda/zulip,Batterfii/zulip,ryansnowboarder/zulip,itnihao/zulip,amanharitsh123/zulip,amallia/zulip,pradiptad/zulip,jeffcao/zulip,tbutter/zulip,bitemyapp/zulip,calvinleenyc/zulip,ahmadassaf/zulip,Qgap/zulip,saitodisse/zulip,LAndreas/zulip,hayderimran7/zulip,vaidap/zulip,schatt/zulip,swinghu/zulip,Frouk/zulip,xuanhan863/zulip,peguin40/zulip,tdr130/zulip,vabs22/zulip,RobotCaleb/zulip,udxxabp/zulip,souravbadami/zulip,jrowan/zulip,ikasumiwt/zulip,technicalpickles/zulip,susansls/zulip,adnanh/zulip,zofuthan/zulip,schatt/zulip,amallia/zulip,sharmaeklavya2/zulip,shrikrishnaholla/zulip,yuvipanda/zulip,easyfmxu/zulip,showell/zulip,MariaFaBella85/zulip,tbutter/zulip,kou/zulip,dhcrzf/zulip,PaulPetring/zulip,eeshangarg/zulip,bowlofstew/zulip,jerryge/zulip,atomic-labs/zulip,bastianh/zulip,brockwhittaker/zulip,kou/zulip,jeffcao/zulip,paxapy/zulip,saitodisse/zulip,bowlofstew/zulip,wavelets/zulip,Drooids/zulip,christi3k/zulip,dnmfarrell/zulip,samatdav/zulip,mansilladev/zulip,suxinde2009/zulip,mansilladev/zulip,jessedhillon/zulip,zhaoweigg/zulip,jrowan/zulip,samatdav/zulip,sharmaeklavya2/zulip,avastu/zulip,hafeez3000/zulip,willingc/zulip,esander91/zulip,xuxiao/zulip,udxxabp/zulip,hj3938/zulip,dawran6/zulip,blaze225/zulip,AZtheAsian/zulip,arpitpanwar/zulip,swinghu/zulip,niftynei/zulip,showell/zulip,ipernet/zulip,SmartPeople/zulip,blaze225/zulip,aps-sids/zulip,PaulPetring/zulip,akuseru/zulip,wangdeshui/zulip,umkay/zulip,bowlofstew/zulip,punchagan/zulip,johnnygaddarr/zulip,TigorC/zulip,KingxBanana/zulip,jessedhillon/zulip,guiquanz/zulip,easyfmxu/zulip,saitodisse/zulip,hackerkid/zulip,ufosky-server/zulip,Batterfii/zulip,hustlzp/zulip,Qgap/zulip,mansilladev/zulip,so0k/zulip,pradiptad/zulip,dhcrzf/zulip,vabs22/zulip,swinghu/zulip,Galexrt/zulip,easyfmxu/zulip,hustlzp/zulip,yocome/zulip,armooo/zulip,bluesea/zulip,xuanhan863/zulip,ryanbackman/zulip,dawran6/zulip,jrowan/zulip,PhilSk/zulip,mohsenSy/zulip,seapasulli/zulip,umkay/zulip,udxxabp/zulip,karamcnair/zulip,verma-varsha/zulip,calvinleenyc/zulip,developerfm/zulip,huangkebo/zulip,peiwei/zulip,rht/zulip,swinghu/zulip,themass/zulip,so0k/zulip,wavelets/zulip,xuxiao/zulip,amanharitsh123/zulip,akuseru/zulip,akuseru/zulip,vakila/zulip,vaidap/zulip,MayB/zulip,zhaoweigg/zulip,tiansiyuan/zulip,vaidap/zulip,zhaoweigg/zulip,verma-varsha/zulip,DazWorrall/zulip,synicalsyntax/zulip,MayB/zulip,jphilipsen05/zulip,ericzhou2008/zulip,atomic-labs/zulip,lfranchi/zulip,bowlofstew/zulip,andersk/zulip,brainwane/zulip,grave-w-grave/zulip,deer-hope/zulip,karamcnair/zulip,avastu/zulip,krtkmj/zulip,dwrpayne/zulip,zachallaun/zulip,reyha/zulip,zwily/zulip,mansilladev/zulip,Gabriel0402/zulip,he15his/zulip,blaze225/zulip,bitemyapp/zulip,Suninus/zulip,lfranchi/zulip,Frouk/zulip,ryanbackman/zulip,kokoar/zulip,rishig/zulip,mdavid/zulip,tbutter/zulip,seapasulli/zulip,deer-hope/zulip,PaulPetring/zulip,levixie/zulip,vakila/zulip,amanharitsh123/zulip,xuxiao/zulip,bssrdf/zulip,isht3/zulip,KingxBanana/zulip,Jianchun1/zulip,tommyip/zulip,jainayush975/zulip,lfranchi/zulip,tommyip/zulip,hafeez3000/zulip,tommyip/zulip,deer-hope/zulip,blaze225/zulip,zofuthan/zulip,amyliu345/zulip,hayderimran7/zulip,jerryge/zulip,alliejones/zulip,grave-w-grave/zulip,eastlhu/zulip,xuxiao/zulip,MariaFaBella85/zulip,punchagan/zulip,littledogboy/zulip,Juanvulcano/zulip,guiquanz/zulip,developerfm/zulip,aliceriot/zulip,nicholasbs/zulip,SmartPeople/zulip,ryanbackman/zulip,aliceriot/zulip,dwrpayne/zulip,shaunstanislaus/zulip,nicholasbs/zulip,tiansiyuan/zulip,jonesgithub/zulip,zachallaun/zulip,synicalsyntax/zulip,stamhe/zulip,stamhe/zulip,babbage/zulip,tommyip/zulip,ikasumiwt/zulip,themass/zulip,zachallaun/zulip,dxq-git/zulip,DazWorrall/zulip,tdr130/zulip,armooo/zulip,Drooids/zulip,krtkmj/zulip,Cheppers/zulip,isht3/zulip,jphilipsen05/zulip,glovebx/zulip,thomasboyt/zulip,qq1012803704/zulip,bluesea/zulip,ipernet/zulip,mahim97/zulip,zorojean/zulip,johnnygaddarr/zulip,RobotCaleb/zulip,joshisa/zulip,he15his/zulip,Qgap/zulip,fw1121/zulip,aps-sids/zulip,so0k/zulip,ryansnowboarder/zulip,zacps/zulip,christi3k/zulip,karamcnair/zulip,susansls/zulip,JanzTam/zulip,littledogboy/zulip,wangdeshui/zulip,luyifan/zulip,MayB/zulip,samatdav/zulip,PhilSk/zulip,esander91/zulip,cosmicAsymmetry/zulip,zachallaun/zulip,synicalsyntax/zulip,eastlhu/zulip,ApsOps/zulip,johnny9/zulip,brainwane/zulip,hustlzp/zulip,easyfmxu/zulip,moria/zulip,hackerkid/zulip,paxapy/zulip,schatt/zulip,kokoar/zulip,Juanvulcano/zulip,ashwinirudrappa/zulip,peiwei/zulip,vikas-parashar/zulip,ericzhou2008/zulip,arpitpanwar/zulip,EasonYi/zulip,easyfmxu/zulip,gigawhitlocks/zulip,kaiyuanheshang/zulip,littledogboy/zulip,vabs22/zulip,pradiptad/zulip,bastianh/zulip,developerfm/zulip,christi3k/zulip,thomasboyt/zulip,esander91/zulip,shubhamdhama/zulip,AZtheAsian/zulip,levixie/zulip,bluesea/zulip,ahmadassaf/zulip,Drooids/zulip,qq1012803704/zulip,technicalpickles/zulip,voidException/zulip,stamhe/zulip,souravbadami/zulip,Suninus/zulip,johnnygaddarr/zulip,moria/zulip,hj3938/zulip,j831/zulip,rishig/zulip,ipernet/zulip,bluesea/zulip,alliejones/zulip,glovebx/zulip,vikas-parashar/zulip,joshisa/zulip,grave-w-grave/zulip,noroot/zulip,praveenaki/zulip,dwrpayne/zulip,KJin99/zulip,brockwhittaker/zulip,Cheppers/zulip,Vallher/zulip,zorojean/zulip,Diptanshu8/zulip,brainwane/zulip,deer-hope/zulip,joyhchen/zulip,TigorC/zulip,m1ssou/zulip,fw1121/zulip,LAndreas/zulip,gkotian/zulip,voidException/zulip,littledogboy/zulip,codeKonami/zulip,easyfmxu/zulip,ahmadassaf/zulip,jeffcao/zulip,rishig/zulip,Cheppers/zulip,suxinde2009/zulip,grave-w-grave/zulip,dotcool/zulip,kokoar/zulip,EasonYi/zulip,KingxBanana/zulip,aps-sids/zulip,zacps/zulip,ApsOps/zulip,vabs22/zulip,joshisa/zulip,firstblade/zulip,firstblade/zulip,codeKonami/zulip,dxq-git/zulip,akuseru/zulip,hafeez3000/zulip,kaiyuanheshang/zulip,m1ssou/zulip,zulip/zulip,aps-sids/zulip,guiquanz/zulip,jainayush975/zulip,vikas-parashar/zulip,ericzhou2008/zulip,umkay/zulip,ufosky-server/zulip,showell/zulip,ryansnowboarder/zulip,Vallher/zulip,jonesgithub/zulip,themass/zulip,aakash-cr7/zulip,shubhamdhama/zulip,mansilladev/zulip,babbage/zulip,peiwei/zulip,codeKonami/zulip,niftynei/zulip,Batterfii/zulip,mahim97/zulip,noroot/zulip,noroot/zulip,dattatreya303/zulip,tiansiyuan/zulip,hengqujushi/zulip,zorojean/zulip,seapasulli/zulip,Qgap/zulip,zulip/zulip,Suninus/zulip,willingc/zulip,itnihao/zulip,jessedhillon/zulip,blaze225/zulip,esander91/zulip,hayderimran7/zulip,synicalsyntax/zulip,Drooids/zulip,ericzhou2008/zulip,krtkmj/zulip,armooo/zulip,vakila/zulip,shubhamdhama/zulip,themass/zulip,qq1012803704/zulip,ikasumiwt/zulip,jainayush975/zulip,praveenaki/zulip,zulip/zulip,arpith/zulip,bastianh/zulip,amyliu345/zulip,JPJPJPOPOP/zulip,dnmfarrell/zulip,Galexrt/zulip,zwily/zulip,bitemyapp/zulip,zulip/zulip,levixie/zulip,praveenaki/zulip,LeeRisk/zulip,arpith/zulip,pradiptad/zulip,hafeez3000/zulip,krtkmj/zulip,nicholasbs/zulip,LAndreas/zulip,kaiyuanheshang/zulip,xuanhan863/zulip,saitodisse/zulip,yuvipanda/zulip,easyfmxu/zulip,eeshangarg/zulip,MariaFaBella85/zulip,seapasulli/zulip,Galexrt/zulip,Jianchun1/zulip,amanharitsh123/zulip,jrowan/zulip,KingxBanana/zulip,jimmy54/zulip,susansls/zulip,glovebx/zulip,sharmaeklavya2/zulip,brainwane/zulip,yocome/zulip,isht3/zulip,calvinleenyc/zulip,babbage/zulip,zofuthan/zulip,Diptanshu8/zulip,suxinde2009/zulip,itnihao/zulip,JanzTam/zulip,noroot/zulip,eastlhu/zulip,kokoar/zulip,gigawhitlocks/zulip,jerryge/zulip,ahmadassaf/zulip,wavelets/zulip,eeshangarg/zulip,jainayush975/zulip,yocome/zulip,joyhchen/zulip,atomic-labs/zulip,gkotian/zulip,zhaoweigg/zulip,sonali0901/zulip,huangkebo/zulip,LeeRisk/zulip,shaunstanislaus/zulip,TigorC/zulip,verma-varsha/zulip,zwily/zulip,jainayush975/zulip,akuseru/zulip,noroot/zulip,wavelets/zulip,jackrzhang/zulip,zwily/zulip,johnny9/zulip,reyha/zulip,andersk/zulip,sharmaeklavya2/zulip,peiwei/zulip,dotcool/zulip,Juanvulcano/zulip,Gabriel0402/zulip,zachallaun/zulip,glovebx/zulip,hackerkid/zulip,vikas-parashar/zulip,proliming/zulip,bastianh/zulip,amyliu345/zulip,Vallher/zulip,willingc/zulip,EasonYi/zulip,gigawhitlocks/zulip,timabbott/zulip,jphilipsen05/zulip,hengqujushi/zulip,arpitpanwar/zulip,ipernet/zulip,vaidap/zulip,dawran6/zulip,PaulPetring/zulip,proliming/zulip,yuvipanda/zulip,stamhe/zulip,yocome/zulip,joyhchen/zulip,shubhamdhama/zulip,moria/zulip,nicholasbs/zulip,cosmicAsymmetry/zulip,sup95/zulip,qq1012803704/zulip,rishig/zulip,dxq-git/zulip,PhilSk/zulip,amallia/zulip,Drooids/zulip,RobotCaleb/zulip,dawran6/zulip,karamcnair/zulip,kokoar/zulip,arpith/zulip,zwily/zulip,sup95/zulip,Juanvulcano/zulip,cosmicAsymmetry/zulip,SmartPeople/zulip,aakash-cr7/zulip,suxinde2009/zulip,gkotian/zulip,dxq-git/zulip,jonesgithub/zulip,JanzTam/zulip,aliceriot/zulip,he15his/zulip,noroot/zulip,tommyip/zulip,ryansnowboarder/zulip,aakash-cr7/zulip,christi3k/zulip,xuxiao/zulip,dattatreya303/zulip,hengqujushi/zulip,MariaFaBella85/zulip,bssrdf/zulip,avastu/zulip,aliceriot/zulip,timabbott/zulip,krtkmj/zulip,punchagan/zulip,qq1012803704/zulip,joshisa/zulip,firstblade/zulip,schatt/zulip,yuvipanda/zulip,dnmfarrell/zulip,karamcnair/zulip,jrowan/zulip,firstblade/zulip,dotcool/zulip,lfranchi/zulip,bitemyapp/zulip,tiansiyuan/zulip,verma-varsha/zulip,Batterfii/zulip,m1ssou/zulip,Diptanshu8/zulip,gigawhitlocks/zulip,bitemyapp/zulip,swinghu/zulip,bastianh/zulip,bssrdf/zulip,DazWorrall/zulip,noroot/zulip,eeshangarg/zulip,atomic-labs/zulip,PaulPetring/zulip,dhcrzf/zulip,developerfm/zulip,ashwinirudrappa/zulip,johnnygaddarr/zulip,schatt/zulip,dxq-git/zulip,thomasboyt/zulip,akuseru/zulip,so0k/zulip,AZtheAsian/zulip,mohsenSy/zulip,jerryge/zulip,wangdeshui/zulip,ufosky-server/zulip,umkay/zulip,seapasulli/zulip,itnihao/zulip,ikasumiwt/zulip,qq1012803704/zulip,peguin40/zulip,vakila/zulip,andersk/zulip,mohsenSy/zulip,niftynei/zulip,ashwinirudrappa/zulip,Suninus/zulip,jimmy54/zulip,he15his/zulip,dotcool/zulip,thomasboyt/zulip,udxxabp/zulip,LeeRisk/zulip,jonesgithub/zulip,paxapy/zulip,showell/zulip,dwrpayne/zulip,jerryge/zulip,souravbadami/zulip,johnnygaddarr/zulip,glovebx/zulip,luyifan/zulip,Qgap/zulip,KJin99/zulip,johnny9/zulip,proliming/zulip,rht/zulip,wavelets/zulip,aliceriot/zulip,tiansiyuan/zulip,developerfm/zulip,ApsOps/zulip,jerryge/zulip,reyha/zulip,amallia/zulip,ryanbackman/zulip,dotcool/zulip,sharmaeklavya2/zulip,bastianh/zulip,voidException/zulip,pradiptad/zulip,jonesgithub/zulip,proliming/zulip,codeKonami/zulip,susansls/zulip,mdavid/zulip,fw1121/zulip,kaiyuanheshang/zulip,Gabriel0402/zulip,DazWorrall/zulip,eeshangarg/zulip,calvinleenyc/zulip,proliming/zulip,brainwane/zulip,huangkebo/zulip,levixie/zulip,Gabriel0402/zulip,bssrdf/zulip,he15his/zulip,paxapy/zulip,sup95/zulip,ahmadassaf/zulip,KJin99/zulip,AZtheAsian/zulip,jackrzhang/zulip,hayderimran7/zulip,eastlhu/zulip,Frouk/zulip,samatdav/zulip,mdavid/zulip,jimmy54/zulip,kou/zulip,hj3938/zulip,saitodisse/zulip,ipernet/zulip,arpitpanwar/zulip,udxxabp/zulip,christi3k/zulip,natanovia/zulip,ikasumiwt/zulip,umkay/zulip,vakila/zulip,schatt/zulip,seapasulli/zulip,mohsenSy/zulip,ericzhou2008/zulip,wweiradio/zulip,avastu/zulip,hackerkid/zulip,udxxabp/zulip,ufosky-server/zulip,joshisa/zulip,suxinde2009/zulip,gkotian/zulip,Jianchun1/zulip,punchagan/zulip,glovebx/zulip,johnny9/zulip,ryanbackman/zulip,j831/zulip,zorojean/zulip,Juanvulcano/zulip,mahim97/zulip,aps-sids/zulip,deer-hope/zulip,aakash-cr7/zulip,themass/zulip,EasonYi/zulip,praveenaki/zulip,hayderimran7/zulip,johnnygaddarr/zulip,aliceriot/zulip,ipernet/zulip,MariaFaBella85/zulip,amyliu345/zulip,zorojean/zulip,vaidap/zulip,avastu/zulip,jeffcao/zulip,armooo/zulip,dhcrzf/zulip,mdavid/zulip,shaunstanislaus/zulip,xuxiao/zulip,krtkmj/zulip,Gabriel0402/zulip,joshisa/zulip,sharmaeklavya2/zulip,armooo/zulip,rht/zulip,hengqujushi/zulip,tdr130/zulip,PaulPetring/zulip,bluesea/zulip,wdaher/zulip,SmartPeople/zulip,m1ssou/zulip,alliejones/zulip,dattatreya303/zulip,willingc/zulip,Frouk/zulip,arpith/zulip,KJin99/zulip,jimmy54/zulip,yocome/zulip,souravbadami/zulip,mdavid/zulip,dhcrzf/zulip,sonali0901/zulip,babbage/zulip,MariaFaBella85/zulip,mahim97/zulip,j831/zulip,pradiptad/zulip,andersk/zulip,KJin99/zulip,dwrpayne/zulip,ryansnowboarder/zulip,sup95/zulip,Galexrt/zulip,DazWorrall/zulip,joyhchen/zulip,luyifan/zulip,synicalsyntax/zulip,JanzTam/zulip,bluesea/zulip,sonali0901/zulip,Cheppers/zulip,AZtheAsian/zulip,bitemyapp/zulip,armooo/zulip,voidException/zulip,kokoar/zulip,arpitpanwar/zulip,MayB/zulip,sonali0901/zulip,jainayush975/zulip,SmartPeople/zulip,technicalpickles/zulip,mansilladev/zulip,zachallaun/zulip,showell/zulip,avastu/zulip,developerfm/zulip,TigorC/zulip,shubhamdhama/zulip,codeKonami/zulip,tiansiyuan/zulip,hustlzp/zulip,proliming/zulip,JPJPJPOPOP/zulip,amallia/zulip,huangkebo/zulip,hj3938/zulip,itnihao/zulip,guiquanz/zulip,brockwhittaker/zulip,ashwinirudrappa/zulip,willingc/zulip,kou/zulip,andersk/zulip,littledogboy/zulip,akuseru/zulip,eastlhu/zulip,technicalpickles/zulip,paxapy/zulip,zacps/zulip,alliejones/zulip,he15his/zulip,dnmfarrell/zulip,sup95/zulip,ApsOps/zulip,tbutter/zulip,karamcnair/zulip,natanovia/zulip,hj3938/zulip,stamhe/zulip,j831/zulip,arpitpanwar/zulip,ahmadassaf/zulip,jessedhillon/zulip,codeKonami/zulip,wweiradio/zulip,timabbott/zulip,luyifan/zulip,hengqujushi/zulip,Galexrt/zulip,joyhchen/zulip,swinghu/zulip,nicholasbs/zulip,JPJPJPOPOP/zulip,swinghu/zulip,themass/zulip,wweiradio/zulip,shrikrishnaholla/zulip,nicholasbs/zulip,brockwhittaker/zulip,Gabriel0402/zulip,peiwei/zulip,rht/zulip,jackrzhang/zulip,blaze225/zulip,tdr130/zulip,schatt/zulip,eastlhu/zulip,lfranchi/zulip,bitemyapp/zulip,rht/zulip,eeshangarg/zulip,Suninus/zulip,Qgap/zulip,reyha/zulip,AZtheAsian/zulip,bastianh/zulip,ryansnowboarder/zulip,samatdav/zulip,zacps/zulip,MariaFaBella85/zulip,udxxabp/zulip,synicalsyntax/zulip,fw1121/zulip,gkotian/zulip,voidException/zulip,fw1121/zulip,vaidap/zulip,ericzhou2008/zulip,Diptanshu8/zulip,isht3/zulip,lfranchi/zulip,adnanh/zulip,guiquanz/zulip,suxinde2009/zulip,mohsenSy/zulip,calvinleenyc/zulip,firstblade/zulip,jonesgithub/zulip,PaulPetring/zulip,zachallaun/zulip,RobotCaleb/zulip,willingc/zulip,timabbott/zulip,peiwei/zulip,KingxBanana/zulip,dhcrzf/zulip,hustlzp/zulip,timabbott/zulip,SmartPeople/zulip,KingxBanana/zulip,esander91/zulip,zofuthan/zulip,moria/zulip,wangdeshui/zulip,thomasboyt/zulip,wavelets/zulip,levixie/zulip,ahmadassaf/zulip,willingc/zulip,timabbott/zulip,thomasboyt/zulip,wdaher/zulip,zhaoweigg/zulip,zhaoweigg/zulip,atomic-labs/zulip,Drooids/zulip,dnmfarrell/zulip,peguin40/zulip,souravbadami/zulip,gkotian/zulip,peguin40/zulip,m1ssou/zulip,vabs22/zulip,showell/zulip,wdaher/zulip,punchagan/zulip,susansls/zulip,praveenaki/zulip,tommyip/zulip,natanovia/zulip,eastlhu/zulip,reyha/zulip,PhilSk/zulip,JPJPJPOPOP/zulip,MayB/zulip,verma-varsha/zulip,ApsOps/zulip,kaiyuanheshang/zulip,ryanbackman/zulip,EasonYi/zulip,babbage/zulip,ufosky-server/zulip,wdaher/zulip,xuanhan863/zulip,zacps/zulip,j831/zulip,shaunstanislaus/zulip,sup95/zulip,huangkebo/zulip,zorojean/zulip,karamcnair/zulip,vakila/zulip,xuanhan863/zulip,LAndreas/zulip,hengqujushi/zulip,shrikrishnaholla/zulip,saitodisse/zulip,Batterfii/zulip,dnmfarrell/zulip,ryansnowboarder/zulip,ufosky-server/zulip,jimmy54/zulip,verma-varsha/zulip,vikas-parashar/zulip,hafeez3000/zulip,saitodisse/zulip,PhilSk/zulip,kou/zulip,jphilipsen05/zulip,fw1121/zulip,Cheppers/zulip,calvinleenyc/zulip,peguin40/zulip,ericzhou2008/zulip,hackerkid/zulip,pradiptad/zulip,ApsOps/zulip,andersk/zulip,j831/zulip,praveenaki/zulip,Jianchun1/zulip,m1ssou/zulip,LeeRisk/zulip,reyha/zulip,qq1012803704/zulip,johnny9/zulip,christi3k/zulip,tdr130/zulip,mdavid/zulip,hayderimran7/zulip,jackrzhang/zulip,guiquanz/zulip,wdaher/zulip,bluesea/zulip,technicalpickles/zulip,yuvipanda/zulip,hayderimran7/zulip,dattatreya303/zulip,sonali0901/zulip,levixie/zulip,xuanhan863/zulip,yocome/zulip,jphilipsen05/zulip,luyifan/zulip,zhaoweigg/zulip,johnny9/zulip,krtkmj/zulip,bssrdf/zulip,hj3938/zulip,suxinde2009/zulip,JPJPJPOPOP/zulip,yocome/zulip,dwrpayne/zulip,wweiradio/zulip,alliejones/zulip,itnihao/zulip,glovebx/zulip,tbutter/zulip,LeeRisk/zulip,hackerkid/zulip,amanharitsh123/zulip,ikasumiwt/zulip,mansilladev/zulip,wweiradio/zulip,JanzTam/zulip,alliejones/zulip,peiwei/zulip,jimmy54/zulip,umkay/zulip,kaiyuanheshang/zulip,aps-sids/zulip,joyhchen/zulip,Diptanshu8/zulip,dhcrzf/zulip,atomic-labs/zulip,kou/zulip,wangdeshui/zulip,jackrzhang/zulip,tbutter/zulip,jessedhillon/zulip,MayB/zulip,bssrdf/zulip,zorojean/zulip,kaiyuanheshang/zulip,eeshangarg/zulip,cosmicAsymmetry/zulip,LeeRisk/zulip,natanovia/zulip,jeffcao/zulip,m1ssou/zulip,cosmicAsymmetry/zulip,ashwinirudrappa/zulip,he15his/zulip,thomasboyt/zulip,arpith/zulip,jeffcao/zulip,aakash-cr7/zulip,isht3/zulip,zwily/zulip,grave-w-grave/zulip,wdaher/zulip,dnmfarrell/zulip,fw1121/zulip,dotcool/zulip,lfranchi/zulip,niftynei/zulip,hengqujushi/zulip,shaunstanislaus/zulip,themass/zulip,nicholasbs/zulip,armooo/zulip,adnanh/zulip,ashwinirudrappa/zulip,technicalpickles/zulip,tdr130/zulip,souravbadami/zulip,zulip/zulip,LAndreas/zulip,paxapy/zulip,voidException/zulip,umkay/zulip,ipernet/zulip,aliceriot/zulip,EasonYi/zulip,shubhamdhama/zulip,Galexrt/zulip,zulip/zulip,brainwane/zulip,moria/zulip,codeKonami/zulip,Vallher/zulip,wangdeshui/zulip,ufosky-server/zulip,gkotian/zulip,aps-sids/zulip,shrikrishnaholla/zulip,vikas-parashar/zulip,brainwane/zulip,littledogboy/zulip,arpitpanwar/zulip,hj3938/zulip,brockwhittaker/zulip,deer-hope/zulip,luyifan/zulip,tommyip/zulip,shaunstanislaus/zulip,bowlofstew/zulip,littledogboy/zulip,wdaher/zulip,hustlzp/zulip,developerfm/zulip
f3de62e56aad436521995974c3ad7b9732ee97c4
app/assets/javascripts/templates/navigation/_topbar.hbs
app/assets/javascripts/templates/navigation/_topbar.hbs
<nav class="top-bar" data-topbar> <ul class="title-area"> <li class="name"> <h1><a href="#/">TryRuby - RailsGirls Edition</a></h1> </li> <li class="toggle-topbar menu-icon"><a href="#">Menu</a></li> </ul> <section class="top-bar-section"> <ul class="left"> <li> {{#link-to 'index'}}Home{{/link-to}} </li> <li> {{#link-to 'about'}}About{{/link-to}} </li> <li> {{#link-to 'lessons.index'}}Lessons{{/link-to}} </li> </ul> </section> </nav>
<nav class="top-bar" data-topbar> <ul class="title-area"> <li class="name"> <h1><a href="#/">TryRuby - RailsGirls Edition</a></h1> </li> <li class="toggle-topbar menu-icon"><a href="#">Menu</a></li> </ul> <section class="top-bar-section"> <ul class="left"> <li> {{#link-to 'index'}}Home{{/link-to}} </li> <li> {{#link-to 'about'}}About{{/link-to}} </li> <li> {{#link-to 'lessons.index'}}Lessons{{/link-to}} </li> </ul> </section> <section class="top-bar-section right"> <ul> <li> {{link-to 'Create Lesson' 'lessons.new'}} </li> </ul> </section> </nav>
Add link to topbar for creating lessons [TODO] -> add server side saving
Add link to topbar for creating lessons [TODO] -> add server side saving
Handlebars
mit
mfeckie/try-ruby-railsgirls-edition,mfeckie/try-ruby-railsgirls-edition
af22018060dcd3bf4278c0b1e9ae6f70d4877cc9
src/main/web/templates/handlebars/partials/archives-box.handlebars
src/main/web/templates/handlebars/partials/archives-box.handlebars
<div class="tiles__item tiles__item--nav-type flush-col hide--mobile print--hide"> <h3 class="tiles__title-h3 tiles__title-h3--nav">Need an earlier release?</h3> <div class="tiles__content tiles__content--nav"> <p> We moved them to <a href="http://webarchive.nationalarchives.gov.uk/20160105160709/http://ons.gov.uk/ons/index.html">The National Archives</a> website, to keep this website as responsive as possible. </p> <p> <strong>Please note: </strong>all historical data is still on this website. </p> </div> </div>
<div class="tiles__item tiles__item--nav-type flush-col hide--mobile print--hide"> <h3 class="tiles__title-h3 tiles__title-h3--nav">Need an earlier release?</h3> <div class="tiles__content tiles__content--nav"> <p> We moved them to <a href="http://webarchive.nationalarchives.gov.uk/20160204094749/http://ons.gov.uk/ons/index.html">The National Archives</a> website, to keep this website as responsive as possible. </p> <p> <strong>Please note: </strong>all historical data is still on this website. </p> </div> </div>
Update TNA link to latest
Update TNA link to latest
Handlebars
mit
ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage
74480a20e31c1231286007f29c53590aff003353
src/main/web/templates/handlebars/partials/interactive.handlebars
src/main/web/templates/handlebars/partials/interactive.handlebars
<div class="js--show"> <div class="pym-interactive{{#if_eq full-width "true"}} pym-interactive--full-width{{/if_eq}}" id="{{id}}" data-url="{{url}}"></div> <details class="details"> <summary class="details__summary">Embed code</summary> <div class="details__body"> <label class="embed-code__label" for="embed-{{id}}">Embed this interactive</label> <input class="embed-code__code width-md--32" value='<iframe width="100%" src="{{#if (containsAny url "http" "https")}}{{url}}{{else}}https://{{location.hostname}}{{url}}{{/if}}"></iframe>' id="embed-{{id}}" name="embed-{{id}}" readonly /> <span class="embed-code__success-container"> <button id="" data-id="{{id}}" type="button" class="btn btn--primary embed-code__button js-embed-code-copy">Copy</button> <span role="status"></span> </span> </div> </details> </div>
<div class="js--show"> <div class="pym-interactive{{#if_eq full-width "true"}} pym-interactive--full-width{{/if_eq}}" id="{{id}}" data-url="{{url}}"></div> <details class="details"> <summary class="details__summary">Embed code</summary> <div class="details__body"> <label class="embed-code__label" for="embed-{{id}}">Embed this interactive</label> <input class="embed-code__code width-md--32" value='<iframe width="100%" src="{{#if (containsAny url "http" "https")}}{{url}}{{else}}https://{{location.host}}{{url}}{{/if}}"></iframe>' id="embed-{{id}}" name="embed-{{id}}" readonly /> <span class="embed-code__success-container"> <button id="" data-id="{{id}}" type="button" class="btn btn--primary embed-code__button js-embed-code-copy">Copy</button> <span role="status"></span> </span> </div> </details> </div>
Use host instead of hostname
Use host instead of hostname
Handlebars
mit
ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage
ba81a37f5c7fbf38a7976a04f69ca3faadda34f9
templates/_ds-title-bar.hbs
templates/_ds-title-bar.hbs
<div class="row"> <div class="pull-right"> {{> ds-action-menu}} </div> <div> {{#if item.title}}<h3>{{item.title}}</h3>{{/if}} </div> </div>
<div class="row"> <div class="col-md-10"> {{#if item.title}}<h3>{{item.title}}</h3>{{/if}} </div> <div class="col-md-2" align="right"> {{> ds-action-menu}} </div> </div>
Fix presentation titlebar layout for reals
Fix presentation titlebar layout for reals
Handlebars
apache-2.0
aalpern/tessera,urbanairship/tessera,jmptrader/tessera,Slach/tessera,filippog/tessera,tessera-metrics/tessera,aalpern/tessera,tessera-metrics/tessera,jmptrader/tessera,jmptrader/tessera,urbanairship/tessera,urbanairship/tessera,urbanairship/tessera,filippog/tessera,aalpern/tessera,Slach/tessera,Slach/tessera,tessera-metrics/tessera,aalpern/tessera,tessera-metrics/tessera,section-io/tessera,tessera-metrics/tessera,section-io/tessera,Slach/tessera,aalpern/tessera,section-io/tessera,jmptrader/tessera,section-io/tessera,filippog/tessera,jmptrader/tessera,urbanairship/tessera
a1391c715dd0d17e8cc5c8e3062bc0d5c4689d48
src/_layouts/post.hbs
src/_layouts/post.hbs
--- layout: default.hbs pageClass: putainde-Post nav: true title: true sidebar: true footer: true author: false --- {{> body }} {{ author this.author }} {{#and happyplan.disqus_short_name page.comments }} <section class="putainde-Comments"> <h1 class="putainde-Comments-title">Comments</h1> <div id="disqus_thread" aria-live="polite"> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> </div> </section> {{/and}}
--- layout: default.hbs pageClass: putainde-Post nav: true title: true sidebar: true footer: true author: false --- {{> body }} {{ author this.author }} {{#if this.contributors}} <h2>Contributeurs</h2> <ul> {{#each this.contributors}} <li><a href="http://github.com/{{this}}">@{{this}}</a></li> {{/each}} </ul> {{/if}} {{#and happyplan.disqus_short_name page.comments }} <section class="putainde-Comments"> <h1 class="putainde-Comments-title">Comments</h1> <div id="disqus_thread" aria-live="polite"> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> </div> </section> {{/and}}
Support basique pour les contributeurs
Support basique pour les contributeurs Améliore #72 mais ce n'est pas optimal.
Handlebars
mit
revolunet/putaindecode.fr,pdoreau/putaindecode.fr,revolunet/putaindecode.fr,revolunet/putaindecode.fr,putaindecode/putaindecode.fr,pdoreau/putaindecode.fr,skinnyfoetusboy/putaindecode.fr,neemzy/putaindecode.fr,putaindecode/putaindecode.fr,skinnyfoetusboy/putaindecode.fr,skinnyfoetusboy/putaindecode.fr,neemzy/putaindecode.fr,putaindecode/putaindecode.io,neemzy/putaindecode.fr,pdoreau/putaindecode.fr,putaindecode/putaindecode.fr
983baab20356c65d8cf57176d2f0ef5d6cf75220
priv/ember_riak_explorer/app/templates/riak-object-edit.hbs
priv/ember_riak_explorer/app/templates/riak-object-edit.hbs
{{#object-location object=model.obj isEditing=true}}{{/object-location}} <br /> <div class="container"> <div class="row"> <div class="col-md-12"> {{#object-headers headers=model.obj.headersIndexes title='Secondary Indexes'}}{{/object-headers}} </div> </div> <div class="row"> <div class="col-md-12"> {{#object-headers headers=model.obj.headersCustom title='Custom Headers'}}{{/object-headers}} </div> </div> </div> <br /> <div class="container"> <h4>Contents</h4> <div class="row"> <div class="col-md-12"> Content Type: <b>{{model.obj.contentType}}</b> </div> </div> </div> <br /> <div class="container"> {{textarea value=model.obj.contents rows=20 cols=100}} </div> <div class="container"> <button type="button" class="btn btn-md btn-primary" {{action 'saveObject' model.obj}}> Save</button> </div> {{#object-version object=model.obj}}{{/object-version}}
{{#object-location object=model.obj isEditing=true}}{{/object-location}} <br /> <div class="container"> <div class="row"> <div class="col-md-12"> {{#object-headers headers=model.obj.headersIndexes title='Secondary Indexes'}}{{/object-headers}} </div> </div> <div class="row"> <div class="col-md-12"> {{#object-headers headers=model.obj.headersCustom title='Custom Headers'}}{{/object-headers}} </div> </div> </div> <br /> <div class="container"> <h4>Content</h4> <div class="row"> <div class="col-md-12 form-group"> <label for='contentType'>Content Type:</label> {{input value=model.obj.contentType id='contentType' class="form-control"}} </div> </div> </div> <br /> <div class="container"> {{textarea value=model.obj.contents autofocus=true rows=20 cols=100}} </div> <div class="container"> <button type="button" class="btn btn-md btn-primary" {{action 'saveObject' model.obj}}> Save</button> </div> {{#object-version object=model.obj}}{{/object-version}}
Add edit content type field to Edit Object view (REX-36)
Add edit content type field to Edit Object view (REX-36)
Handlebars
apache-2.0
travisbhartwell/riak_explorer,travisbhartwell/riak_explorer,basho-labs/riak_explorer,basho-labs/riak_explorer,basho-labs/riak_explorer,travisbhartwell/riak_explorer
a4e4b67f8dcbbe01e54b40b727405a226037019b
app/templates/variants/_variantsDetail.hbs
app/templates/variants/_variantsDetail.hbs
<!-- The Mobile Applications List Partial--> <div id="mobile-application-variants-table"> <table class="rcue-table"> <thead> <tr> <th colspan="7"> <div class="table-create-btn topcoat-button">{{#linkTo "variants.add" this}}Add...{{/linkTo}}</div> </th> </tr> <tr> <th>Name</th> <th>Project Number</th> <th>Description</th> <th>Platform</th> <th class="rcue-table-number">Instances</th> <th colspan="2">&nbsp;</th> </tr> </thead> <tbody> {{#each variantList }} <tr> <td>{{#linkTo "variant" this}}{{name}}{{/linkTo}}</td> <td>{{ googleProjectNumber }}</td> <td>{{ description }}</td> <td>{{ typeFormatted }}</td> <td class="rcue-table-number">{{ totalInstances }}</td> <td class="action"> {{#linkTo "variants.edit" this}}Edit{{/linkTo}} </td> <td class="action"> <a href="#" {{ action "remove" this}}>Remove</a> </td> </tr> {{else}} <tr> <td colspan="6">{{#if isLoaded}}No Variant Yet{{/if}}</td> </tr> {{/each}} </tbody> </table> </div>
<!-- The Mobile Applications List Partial--> <div id="mobile-application-variants-table"> <table class="rcue-table"> <thead> <tr> <th colspan="7"> <div class="table-create-btn topcoat-button">{{#linkTo "variants.add" this}}Add...{{/linkTo}}</div> </th> </tr> <tr> <th>Name</th> <th>Project Number</th> <th>Description</th> <th>Platform</th> <th class="rcue-table-number">Instances</th> <th colspan="2">&nbsp;</th> </tr> </thead> <tbody> {{#each variantList }} <tr> <td>{{#linkTo "variant" this}}{{name}}{{/linkTo}}</td> <td>{{ googleProjectNumber }}</td> <td>{{ description }}</td> <td>{{ typeFormatted }}</td> <td class="rcue-table-number">{{ totalInstances }}</td> <td class="action"> {{#linkTo "variants.edit" this}}Rename...{{/linkTo}} </td> <td class="action"> <a href="#" {{ action "remove" this}}>Remove...</a> </td> </tr> {{else}} <tr> <td colspan="6">{{#if isLoaded}}This application doesn't have any variants yet.{{/if}}</td> </tr> {{/each}} </tbody> </table> </div>
Add ellipses for actions and nicer empty list message
templates: Add ellipses for actions and nicer empty list message
Handlebars
apache-2.0
matzew/aerogear-unifiedpush-server,andresgalante/aerogear-unifiedpush-server,diogoalbuquerque/aerogear-unifiedpush-server,lholmquist/aerogear-unified-push-server,abstractj/aerogear-unifiedpush-server,matzew/aerogear-unifiedpush-server,aerobase/unifiedpush-server,andresgalante/aerogear-unifiedpush-server,thradec/aerogear-unifiedpush-server,yvnicolas/aerogear-unifiedpush-server,edewit/aerogear-unifiedpush-server,fheng/aerogear-unifiedpush-server,andresgalante/aerogear-unifiedpush-server,lfryc/aerogear-unifiedpush-server,thradec/aerogear-unifiedpush-server,C-B4/unifiedpush-server,baiwyc119/aerogear-unifiedpush-server,IvanGurtler/aerogear-unifiedpush-server,matzew/aerogear-unifiedpush-server,thradec/aerogear-unifiedpush-server,fheng/aerogear-unifiedpush-server,sinarz/aerogear-unifiedpush-server,danielpassos/aerogear-unifiedpush-server,baiwyc119/aerogear-unifiedpush-server,idelpivnitskiy/aerogear-unifiedpush-server,matzew/aerogear-unifiedpush-server,aerobase/unifiedpush-server,C-B4/unifiedpush-server,lholmquist/aerogear-unified-push-server,lfryc/aerogear-unifiedpush-server,sinarz/aerogear-unifiedpush-server,abstractj/aerogear-unifiedpush-server,secondsun/aerogear-unifiedpush-server,yvnicolas/aerogear-unifiedpush-server,idelpivnitskiy/aerogear-unifiedpush-server,julioa/aerogear-unifiedpush-server,matzew/aerogear-unifiedpush-server,IvanGurtler/aerogear-unifiedpush-server,lholmquist/aerogear-unified-push-server,sinarz/aerogear-unifiedpush-server,thradec/aerogear-unifiedpush-server,aerogear/aerogear-unifiedpush-server,aerogear/aerogear-unifiedpush-server,fheng/aerogear-unifiedpush-server,yvnicolas/aerogear-unifiedpush-server,gunnarmorling/aerogear-unifiedpush-server,edewit/aerogear-unifiedpush-server,lholmquist/aerogear-unified-push-server,qmx/aerogear-unifiedpush-server,lfryc/aerogear-unifiedpush-server,danielpassos/aerogear-unifiedpush-server,julioa/aerogear-unifiedpush-server,yvnicolas/aerogear-unifiedpush-server,thradec/aerogear-unifiedpush-server,baiwyc119/aerogear-unifiedpush-server,baiwyc119/aerogear-unifiedpush-server,yvnicolas/aerogear-unifiedpush-server,lholmquist/aerogear-unified-push-server,andresgalante/aerogear-unifiedpush-server,lholmquist/aerogear-unified-push-server,gunnarmorling/aerogear-unifiedpush-server,IvanGurtler/aerogear-unifiedpush-server,baiwyc119/aerogear-unifiedpush-server,sinarz/aerogear-unifiedpush-server,idelpivnitskiy/aerogear-unifiedpush-server,edewit/aerogear-unifiedpush-server,aerogear/aerogear-unifiedpush-server,lfryc/aerogear-unifiedpush-server,baiwyc119/aerogear-unifiedpush-server,idelpivnitskiy/aerogear-unifiedpush-server,danielpassos/aerogear-unifiedpush-server,danielpassos/aerogear-unifiedpush-server,C-B4/unifiedpush-server,yvnicolas/aerogear-unifiedpush-server,aerobase/unifiedpush-server,danielpassos/aerogear-unifiedpush-server,julioa/aerogear-unifiedpush-server,abstractj/aerogear-unifiedpush-server,edewit/aerogear-unifiedpush-server,qmx/aerogear-unifiedpush-server,thradec/aerogear-unifiedpush-server,secondsun/aerogear-unifiedpush-server,edewit/aerogear-unifiedpush-server,fheng/aerogear-unifiedpush-server,diogoalbuquerque/aerogear-unifiedpush-server,lfryc/aerogear-unifiedpush-server,julioa/aerogear-unifiedpush-server,sinarz/aerogear-unifiedpush-server,abstractj/aerogear-unifiedpush-server,idelpivnitskiy/aerogear-unifiedpush-server,matzew/aerogear-unifiedpush-server,sinarz/aerogear-unifiedpush-server,edewit/aerogear-unifiedpush-server,andresgalante/aerogear-unifiedpush-server,julioa/aerogear-unifiedpush-server,C-B4/unifiedpush-server,abstractj/aerogear-unifiedpush-server,secondsun/aerogear-unifiedpush-server,diogoalbuquerque/aerogear-unifiedpush-server,fheng/aerogear-unifiedpush-server,gunnarmorling/aerogear-unifiedpush-server,danielpassos/aerogear-unifiedpush-server,julioa/aerogear-unifiedpush-server,fheng/aerogear-unifiedpush-server,andresgalante/aerogear-unifiedpush-server,lfryc/aerogear-unifiedpush-server,abstractj/aerogear-unifiedpush-server,idelpivnitskiy/aerogear-unifiedpush-server
17e0f450e9bcc5873733d202967844ae7ef084ee
app/assets/javascripts/discourse/templates/components/composer-editor.hbs
app/assets/javascripts/discourse/templates/components/composer-editor.hbs
{{d-editor tabindex="4" value=composer.reply placeholder="composer.reply_placeholder" previewUpdated="previewUpdated" markdownOptions=markdownOptions extraButtons="extraButtons" importQuote="importQuote" showOptions="showOptions" showUploadModal="showUploadModal" validation=validation loading=composer.loading}} <div class="composer-bottom-right"> {{#if site.mobileView}} <input type="file" id="mobile-uploader" /> <a class="mobile-file-upload {{if isUploading 'hidden'}}">{{i18n 'upload'}}</a> {{else}} <a href {{action "togglePreview"}} class='toggle-preview'>{{{toggleText}}}</a> {{/if}} {{#if isUploading}} <div id="file-uploading"> {{loading-spinner size="small"}} {{i18n 'upload_selector.uploading'}} {{uploadProgress}}% {{#if isCancellable}} <a href id="cancel-file-upload" {{action "cancelUpload"}}>{{fa-icon "times"}}</a> {{/if}} </div> {{/if}} <div id='draft-status' class="{{if isUploading 'hidden'}}"> {{draftStatus}} </div> </div>
{{d-editor tabindex="4" value=composer.reply placeholder="composer.reply_placeholder" previewUpdated="previewUpdated" markdownOptions=markdownOptions extraButtons="extraButtons" importQuote="importQuote" showOptions="showOptions" showUploadModal="showUploadModal" validation=validation loading=composer.loading}} <div class="composer-bottom-right"> {{#if site.mobileView}} <input type="file" id="mobile-uploader" multiple /> <a class="mobile-file-upload {{if isUploading 'hidden'}}">{{i18n 'upload'}}</a> {{else}} <a href {{action "togglePreview"}} class='toggle-preview'>{{{toggleText}}}</a> {{/if}} {{#if isUploading}} <div id="file-uploading"> {{loading-spinner size="small"}} {{i18n 'upload_selector.uploading'}} {{uploadProgress}}% {{#if isCancellable}} <a href id="cancel-file-upload" {{action "cancelUpload"}}>{{fa-icon "times"}}</a> {{/if}} </div> {{/if}} <div id='draft-status' class="{{if isUploading 'hidden'}}"> {{draftStatus}} </div> </div>
Support multiple file selection on mobile
FEATURE: Support multiple file selection on mobile
Handlebars
mit
natefinch/discourse,natefinch/discourse
7aafe5626e6ec2269a9fe6b4da9241be335f01c9
addon/templates/components/power-select-typeahead/trigger.hbs
addon/templates/components/power-select-typeahead/trigger.hbs
<input type="search" value={{text}} id="ember-power-select-typeahead-input-{{select.uniqueId}}" class="ember-power-select-typeahead-input ember-power-select-search-input" placeholder={{placeholder}} oninput={{onInput}} onfocus={{onFocus}} onkeydown={{action "handleKeydown"}} onmousedown={{action "stopPropagation"}}> {{#if select.loading}} <span class="ember-power-select-typeahead-loading-indicator"></span> {{/if}}
<input type="search" value={{text}} id="ember-power-select-typeahead-input-{{select.uniqueId}}" class="ember-power-select-typeahead-input ember-power-select-search-input" placeholder={{placeholder}} oninput={{onInput}} onfocus={{onFocus}} onblur={{onBlur}} onkeydown={{action "handleKeydown"}} onmousedown={{action "stopPropagation"}}> {{#if select.loading}} <span class="ember-power-select-typeahead-loading-indicator"></span> {{/if}}
Fix power-select not being deactivated
Fix power-select not being deactivated The power-select active class is still applied when focus moves away. This is noticable when there is some :focus css applied to the input.
Handlebars
mit
cibernox/ember-power-select-typeahead,cibernox/ember-power-select-typeahead
6977c2db58220d457e48bfdaf768719d42d62fe0
src/main/web/florence/templates/chartEditBarlineExtras.handlebars
src/main/web/florence/templates/chartEditBarlineExtras.handlebars
<label for="finish-at-hundred" class="checkbox-label">Finish at 100</label> <input id="finish-at-hundred" name="Finish at 100" {{#if finishAtHundred}}checked{{/if}} type="checkbox"> {{#each series}} <label for="types_{{@index}}">{{this}}</label> <div class="select-wrap"> <select id="types_{{@index}}" class="col--5"> {{#select (lookup ../chartTypes this)}} <option value="bar">Bar</option> <option value="line">Line</option> {{/select}} </select> </div> <label for="{{this}}">Bar stack</label> <input id="{{this}}" name="group_check" value="{{this}}" type="checkbox"{{#ifContains this ../groups.[0]}} checked{{/ifContains}}> <br/> {{/each}}
<label for="finish-at-hundred" class="checkbox-label">Finish at 100</label> <input id="finish-at-hundred" name="Finish at 100" {{#if finishAtHundred}}checked{{/if}} type="checkbox"> <br/> {{#each series}} <label for="types_{{@index}}">{{this}}</label> <div class="select-wrap"> <select id="types_{{@index}}" class="col--5"> {{#select (lookup ../chartTypes this)}} <option value="bar">Bar</option> <option value="line">Line</option> {{/select}} </select> </div> <label for="{{this}}">Bar stack</label> <input id="{{this}}" name="group_check" value="{{this}}" type="checkbox"{{#ifContains this ../groups.[0]}} checked{{/ifContains}}> <br/> {{/each}}
Add line break to set Extras on new line
Add line break to set Extras on new line Former-commit-id: 9d2dcbdb96f24d66fe34f033344e4c9431ffc35e
Handlebars
mit
ONSdigital/florence,ONSdigital/florence,ONSdigital/florence,ONSdigital/florence
edb5266b1479450865abce607383f7c307dc1225
src/main/web/florence/templates/releaseSelector.handlebars
src/main/web/florence/templates/releaseSelector.handlebars
<div class="release-select overlay"> <div class="builder__inner release-select__inner"> <div class="release-select__header"> <h1 class="release-select__heading">Select a calendar entry</h1> <div class="release-select-search"> <input id="release-search-input" class="release-select-search__input" type="text" placeholder="Search for a release"> {{!--<button class="btn-release-search">Search</button>--}} </div> </div> <div class="release-select__body"> <table class="table table--primary table--75-25 table--fixed-height-17 release-select-table"> <thead> <tr> <th scope="col">Calendar entry</th> <th scope="col">Calendar entry date</th> </tr> </thead> <tbody id="release-list"> {{!-- Loading animation, removed upon load of Ajax content --}} <tr><td colspan="2" class="release-select__animation">{{> loadingAnimation large=true dark=true}}</td></tr> </tbody> </table> </div> <div class="release-select__footer"> <button class="btn btn-release-selector-cancel">Cancel</button> </div> </div> </div>
<div class="release-select overlay"> <div class="builder__inner release-select__inner"> <div class="release-select__header"> <h1 class="release-select__heading">Select a calendar entry</h1> <div class="release-select-search"> <input id="release-search-input" class="release-select-search__input" type="text" placeholder="Search for a release"> {{!--<button class="btn-release-search">Search</button>--}} </div> </div> <div class="release-select__body"> <table class="table table--primary table--75-25 table--fixed-height-24 release-select-table"> <thead> <tr> <th scope="col">Calendar entry</th> <th scope="col">Calendar entry date</th> </tr> </thead> <tbody id="release-list"> {{!-- Loading animation, removed upon load of Ajax content --}} <tr><td colspan="2" class="release-select__animation">{{> loadingAnimation large=true dark=true}}</td></tr> </tbody> </table> </div> <div class="release-select__footer"> <button class="btn btn-release-selector-cancel">Cancel</button> </div> </div> </div>
Add fixed height class to increase usable space
Add fixed height class to increase usable space Former-commit-id: 13dfc987b18f893f46d9fa03670b83f987549d72
Handlebars
mit
ONSdigital/florence,ONSdigital/florence,ONSdigital/florence,ONSdigital/florence
60f30aa6ad3b7e38ad1febdc4cd33e2c559205ab
app/assets/javascripts/discourse/templates/components/signup-cta.hbs
app/assets/javascripts/discourse/templates/components/signup-cta.hbs
<div class="signup-cta alert alert-info"> {{#if session.hideSignupCta}} <p> {{i18n "signup_cta.hidden_for_session"}} <a {{action "neverShow"}}>{{i18n "signup_cta.hide_forever"}}</a> </p> {{else}} <p>{{replace-emoji (i18n "signup_cta.intro")}}</p> <p>{{replace-emoji (i18n "signup_cta.value_prop")}}</p> <div class="buttons"> {{d-button action="showCreateAccount" label="signup_cta.sign_up" icon="check" class="btn-primary"}} {{d-button action="hideForSession" label="signup_cta.hide_session" class="no-icon"}} <a {{action "neverShow"}}>{{i18n "signup_cta.hide_forever"}}</a> </div> {{/if}} <div class="clearfix"></div> </div>
<div class="signup-cta alert alert-info"> {{#if session.hideSignupCta}} <p> {{i18n "signup_cta.hidden_for_session"}} </p> {{else}} <p>{{replace-emoji (i18n "signup_cta.intro")}}</p> <p>{{replace-emoji (i18n "signup_cta.value_prop")}}</p> <div class="buttons"> {{d-button action="showCreateAccount" label="signup_cta.sign_up" icon="check" class="btn-primary"}} {{d-button action="hideForSession" label="signup_cta.hide_session" class="no-icon"}} <a {{action "neverShow"}}>{{i18n "signup_cta.hide_forever"}}</a> </div> {{/if}} <div class="clearfix"></div> </div>
Remove 'no thanks' from remind tomorrow CTA
UX: Remove 'no thanks' from remind tomorrow CTA
Handlebars
mit
natefinch/discourse,natefinch/discourse
c157c61d0e65ff94b51f8a48f9e8362d93593429
app/assets/javascripts/discourse/templates/embedded_post.js.handlebars
app/assets/javascripts/discourse/templates/embedded_post.js.handlebars
{{#with view.content}} <div class='row'> <div class='topic-meta-data span2'> <div class='contents'> <div> <a href='/users/{{unbound username}}'>{{avatar this imageSize="small"}}</a> </div> <h5 {{bindAttr class="staff new_user"}}><a href='{{unbound usernameUrl}}'>{{breakUp username}}</a></h5> </div> </div> <div class='span11 topic-body'> <div class="topic-meta-data-inside"> <div class='post-info post-date'>{{date created_at}}</div> {{#if view.previousPost}}<a href='{{unbound url}}' class="post-info arrow" title="{{i18n topic.jump_reply_up}}"><i class='icon icon-arrow-up'></i></a>{{/if}} </div> {{{unbound cooked}}} {{#unless view.previousPost}}<a href='{{unbound url}}' class="arrow" title="{{i18n topic.jump_reply_down}}"><i class='icon icon-arrow-down'></i></a>{{/unless}} </div> </div> {{/with}}
{{#with view.content}} <div class='row'> <div class='topic-meta-data span2'> <div class='contents'> <div> <a href='/users/{{unbound username}}'>{{avatar this imageSize="small"}}</a> </div> <h5 {{bindAttr class="staff new_user"}}><a href='{{unbound usernameUrl}}'>{{breakUp username}}</a></h5> </div> </div> <div class='span11 topic-body'> <div class="topic-meta-data-inside"> <div class='post-info post-date'>{{unboundAgeWithTooltip created_at}}</div> {{#if view.previousPost}}<a href='{{unbound url}}' class="post-info arrow" title="{{i18n topic.jump_reply_up}}"><i class='icon icon-arrow-up'></i></a>{{/if}} </div> {{{unbound cooked}}} {{#unless view.previousPost}}<a href='{{unbound url}}' class="arrow" title="{{i18n topic.jump_reply_down}}"><i class='icon icon-arrow-down'></i></a>{{/unless}} </div> </div> {{/with}}
Use the same time ago formating in embedded post as other posts
Use the same time ago formating in embedded post as other posts
Handlebars
mit
tadp/learnswift,tadp/learnswift,natefinch/discourse,tadp/learnswift,natefinch/discourse
a5f68e288f54105359e18ce06ba40656ecff17ec
addon/templates/components/nypr-accounts/membership-card/help-modal.hbs
addon/templates/components/nypr-accounts/membership-card/help-modal.hbs
{{#if hasBlock}} {{yield}} {{else}} {{#nypr-account-modal title="Membership Help" closeAction=(action (mut enableModal) false) as |m|}} {{#m.body}} <p> If you've donated but don't see your donation info here, it may be because you've donated with a different email. You can change your donation email in your Personal Info section. </p> <p> Other questions: <a href="/support/faq/">Check out our FAQs</a><br/> Or contact us: <a href="/contact">{{siteDomain}}.org/contact</a> or 646-829-4000 </p> {{/m.body}} {{#m.footer}} <button class="nypr-account-confirm" data-test-selector="confirm-disable" {{action (action (mut enableModal) false)}}>Got it!</button> {{/m.footer}} {{/nypr-account-modal}} {{/if}}
{{#if hasBlock}} {{yield}} {{else}} {{#nypr-account-modal title="Membership Help" closeAction=(action (mut enableModal) false) as |m|}} {{#m.body}} <p> If you've donated but don't see your donation info here, it may be because you've donated with a different email. You can change your donation email in your Personal Info section. </p> <p> Other questions: <a href="/support/faq/">Check out our FAQs</a><br/> Or contact us: <a href="/contact" target="_blank">{{siteDomain}}.org/contact</a> or 646-829-4000 </p> {{/m.body}} {{#m.footer}} <button class="nypr-account-confirm" data-test-selector="confirm-disable" {{action (action (mut enableModal) false)}}>Got it!</button> {{/m.footer}} {{/nypr-account-modal}} {{/if}}
Update help modal 'contact' link to open in new tab
Update help modal 'contact' link to open in new tab
Handlebars
mit
nypublicradio/nypr-account-settings,nypublicradio/nypr-account-settings
cb4b385b2beb408be9ec4b045126cd34f43e830b
assets/scripts/app/templates/repo/settings.hbs
assets/scripts/app/templates/repo/settings.hbs
<div id="repo"> <h3>Settings: {{#link-to "repo" this}}{{slug}}{{/link-to}}</h3> {{#travis-tabs}} {{#travis-tab "general" "General Settings"}} {{#settings-form}} <p class="settings-row"> Build only if .travis.yml is present {{travis-switch action="save" active=settings.builds_only_with_travis_yml}} </p> <p class="settings-row"> Build pushes {{travis-switch action="save" active=settings.build_pushes}} </p> <p class="settings-row"> Build pull requests {{travis-switch action="save" active=settings.build_pull_requests}} </p> <p class="settings-row"> <p class="short-settings-element" {{bind-attr class="settings.maximum_number_of_builds_valid"}}> {{input value=settings.maximum_number_of_builds size="4" pattern='/^[0-9]+$/'}} </p> <label> Concurrent builds </label> </p> {{/settings-form}} {{/travis-tab}} {{/travis-tabs}} </div>
<div id="repo"> <h3>Settings: {{#link-to "repo" this}}{{slug}}{{/link-to}}</h3> {{#travis-tabs}} {{#travis-tab "general" "General Settings"}} {{#settings-form}} <p class="settings-row"> Build only if .travis.yml is present {{travis-switch action="save" active=settings.builds_only_with_travis_yml}} </p> <p class="settings-row"> Build pushes {{travis-switch action="save" active=settings.build_pushes}} </p> <p class="settings-row"> Build pull requests {{travis-switch action="save" active=settings.build_pull_requests}} </p> <p class="settings-row"> <p class="short-settings-element" {{bind-attr class="settings.maximum_number_of_builds_valid"}}> {{input value=settings.maximum_number_of_builds size="4" pattern='/^[0-9]+$/'}} </p> <label> Concurrent jobs </label> </p> {{/settings-form}} {{/travis-tab}} {{/travis-tabs}} </div>
Rename concurrent builds to concurrent jobs
Rename concurrent builds to concurrent jobs
Handlebars
mit
jlrigau/travis-web,fotinakis/travis-web,mjlambert/travis-web,jlrigau/travis-web,2947721120/travis-web,2947721120/travis-web,Tiger66639/travis-web,Tiger66639/travis-web,travis-ci/travis-web,jlrigau/travis-web,fauxton/travis-web,travis-ci/travis-web,jlrigau/travis-web,mjlambert/travis-web,Tiger66639/travis-web,travis-ci/travis-web,2947721120/travis-web,fauxton/travis-web,fauxton/travis-web,mjlambert/travis-web,travis-ci/travis-web,Tiger66639/travis-web,fotinakis/travis-web,2947721120/travis-web,fauxton/travis-web,fotinakis/travis-web,mjlambert/travis-web,fotinakis/travis-web
f7a9d1dcc3735c32fcb14e8bf2dfdba24144a640
ember/app/templates/admin/users.hbs
ember/app/templates/admin/users.hbs
{{outlet}} <table> <tr> <th {{bind-attr class='sortedByFirstName:sortColumn'}} {{action 'sortBy' 'firstName'}}>first name</th> <th {{bind-attr class='sortedByLastName:sortColumn'}} {{action 'sortBy' 'lastName'}}>last name</th> <th {{bind-attr class='sortedByUsername:sortColumn'}} {{action 'sortBy' 'username'}}>username</th> <th {{bind-attr class='sortedByEmail:sortColumn'}} {{action 'sortBy' 'email'}}>email</th> <th {{bind-attr class='sortedByAdmin:sortColumn'}} {{action 'sortBy' 'admin'}}>admin</th> <th><!-- controls --></th> </tr> {{#each sortedList as |user|}} <tr> <td>{{user.firstName}}</td> <td>{{user.lastName}}</td> <td>{{user.username}}</td> <td>{{user.email}}</td> <td>{{user.admin}}</td> <td><button {{action 'destroy' user}}>Delete</button></td> </tr> {{/each}} </table>
{{outlet}} <table> <tr> <th class={{if sortedByFirstName 'sortColumn'}} {{action 'sortBy' 'firstName'}}>first name</th> <th class={{if sortedByLastName 'sortColumn'}} {{action 'sortBy' 'lastName'}}>last name</th> <th class={{if sortedByUsername 'sortColumn'}} {{action 'sortBy' 'username'}}>username</th> <th class={{if sortedByEmail 'sortColumn'}} {{action 'sortBy' 'email'}}>email</th> <th class={{if sortedByAdmin 'sortColumn'}} {{action 'sortBy' 'admin'}}>admin</th> <th><!-- controls --></th> </tr> {{#each sortedList as |user|}} <tr> <td>{{user.firstName}}</td> <td>{{user.lastName}}</td> <td>{{user.username}}</td> <td>{{user.email}}</td> <td>{{user.admin}}</td> <td><button {{action 'destroy' user}}>Delete</button></td> </tr> {{/each}} </table>
Remove bind-attr per deprecation message.
Remove bind-attr per deprecation message.
Handlebars
mit
wallaceicy06/albert,wallaceicy06/albert,wallaceicy06/albert
c8ca76dcad7a01f6030388d592f0a58930b46e95
packages/authentication/addon/templates/components/cardstack-authentication-launcher.hbs
packages/authentication/addon/templates/components/cardstack-authentication-launcher.hbs
{{#if session.isAuthenticated}} {{#if network.iconUrl}} <div class="cardstack-rail-item cardstack-non-interactive"> {{! template-lint-disable no-inline-styles }} <div class="cardstack-network-icon" style={{css-url "background-image" network.iconUrl}} > {{network.name}} </div> {{#if session.user}} {{cardstack-content content=session.user format="sidebar-network"}} {{/if}} </div> {{/if}} {{#if session.user}} {{cardstack-content content=session.user format="sidebar-item"}} {{/if}} {{#if (is-component "cardstack-workflow")}} <div class="cardstack-rail-item " (if isOpen "active")}}> {{cardstack-workflow toggleOpen=(action toggleOpen)}} </div> {{/if}} {{/if}}
{{#if session.isAuthenticated}} {{#if network.iconUrl}} <div class="cardstack-rail-item cardstack-non-interactive"> {{! template-lint-disable no-inline-styles }} <div class="cardstack-network-icon" style={{css-url "background-image" network.iconUrl}} > {{network.name}} </div> {{#if session.user}} {{cardstack-content content=session.user format="sidebar-network"}} {{/if}} </div> {{/if}} {{#if session.user}} {{cardstack-content content=session.user format="sidebar-item"}} {{/if}} {{#if (is-component "cardstack-workflow")}} <div class="cardstack-rail-item {{if isOpen "active"}}"> {{cardstack-workflow toggleOpen=(action toggleOpen)}} </div> {{/if}} {{/if}}
Fix invalid char in attribute
Fix invalid char in attribute
Handlebars
mit
cardstack/cardstack,cardstack/cardstack,cardstack/cardstack,cardstack/cardstack,cardstack/cardstack,cardstack/cardstack
449e4235563fab1dde2a49faca2f0e95341fbaed
tests/dummy/app/templates/index.hbs
tests/dummy/app/templates/index.hbs
<p class="lead"> What follows is a live feed of public builds from <a href="https://travis-ci.org/recent">Travis CI</a>. </p> <ul> {{#each build in this itemController="build"}} <li> <span {{bind-attr class=":pull-right :label build.labelClass"}}> {{build.model.state}} </span> <p> {{build.model.commit.committerName}} pushed to {{build.model.commit.branch}} at <a {{bind-attr href=build.commit.compareURL}}>{{build.model.repository.slug}}</a> </p> <p class="small text-muted"> <a {{bind-attr href=build.commit.compareURL}}>{{build.model.commit.shortSha}}</a> {{build.model.commit.message}} </p> </li> {{/each}} </ul>
<p class="lead"> What follows is a live feed of public builds from <a href="https://travis-ci.org/recent">Travis CI</a>. </p> <ul> {{#each build in this itemController="build"}} <li> <span {{bind-attr class=":pull-right :label build.labelClass"}}> {{build.model.state}} </span> <p> {{build.model.commit.committerName}} pushed to {{build.model.commit.branch}} at <a {{bind-attr href=build.model.commit.compareURL}}>{{build.model.repository.slug}}</a> </p> <p class="small text-muted"> <a {{bind-attr href=build.model.commit.compareURL}}>{{build.model.commit.shortSha}}</a> {{build.model.commit.message}} </p> </li> {{/each}} </ul>
Fix missing hrefs in dummy app.
Fix missing hrefs in dummy app.
Handlebars
mit
IvyApp/ivy-notifier,IvyApp/ivy-notifier
5bdce25af76fdf9ee01ca36e24b12c78796c73fd
src/main/web/templates/handlebars/partials/interactive.handlebars
src/main/web/templates/handlebars/partials/interactive.handlebars
<div class="pym-interactive{{#if_eq full-width "true"}} pym-interactive--full-width{{/if_eq}}" id="{{id}}" data-url="{{url}}"></div>
<div class="js--show"> <div class="pym-interactive{{#if_eq full-width "true"}} pym-interactive--full-width{{/if_eq}}" id="{{id}}" data-url="{{url}}"></div> <details class="details"> <summary class="details__summary">Embed code</summary> <div class="details__body"> <label class="embed-code__label" for="embed-{{id}}">Embed this interactive</label> <input class="embed-code__code width-md--32" value='<iframe width="100%" src="{{url}}"></iframe>' id="embed-{{id}}" name="embed-{{id}}" readonly /> <span class="embed-code__success-container"> <button id="" data-id="{{id}}" type="button" class="btn btn--primary embed-code__button js-embed-code-copy">Copy</button> <span role="status"></span> </span> </div> </details> </div>
Add embed code mark up to partial
Add embed code mark up to partial
Handlebars
mit
ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage
6808703cd1edba0a3a246ffc11442d5a9a0ac762
views/gnome/papers/submit.hbs
views/gnome/papers/submit.hbs
{{#if submission_error}} <font color="red"><b>Something went wrong submitting. Please check you filled in all fields!</b></font> {{/if}} <form action="/papers/submit" method="post"> <table class="submission-form"> <tr><td>Submitter:</td><td><input type="text" value="{{user.email}}" disabled /></td></tr> <tr><td>Your name:</td><td><input type="text" name="submitter_name" value="{{user.name}}" disabled /><br />You will be able to add extra speakers after you have submitted the paper</td></tr> <tr><td>Paper title:</td><td><input type="text" name="paper_title" value="{{paper.title}}" maxlength=50 /></td></tr> <tr><td>Paper summary:</td> <td><textarea name="paper_summary">{{paper.summary}}</textarea></td> </tr> <tr><td>Track:</td> <td> <select name="track"> {{#each tracks}} <option {{#ifEqual ../paper.track this}} selected="selected" {{/ifEqual}} >{{this}}</option> {{/each}} </select> </td></tr> <tr><td>&nbsp;</td> <td><input class="submit-talk" type="submit" value="Submit" /></td> </tr> </table> </form>
{{#if submission_error}} <font color="red"><b>Something went wrong submitting. Please check you filled in all fields!</b></font> {{/if}} <form action="/papers/submit" method="post"> <table class="submission-form"> <tr><td><label for="submit-submitter">Submitter:</label></td><td><input type="text" id="submit-submitter" value="{{user.email}}" disabled /></td></tr> <tr><td><label for="submit-name">Your name:</label></td><td><input type="text" id="submit-name" name="submitter_name" value="{{user.name}}" disabled /><br />You will be able to add extra speakers after you have submitted the paper</td></tr> <tr><td><label for="submit-title">Paper title:</label></td><td><input type="text" id="submit-title" name="paper_title" value="{{paper.title}}" maxlength=50 /></td></tr> <tr><td><label for="submit-summary">Paper summary:</label></td> <td><textarea id="submit-summary" name="paper_summary">{{paper.summary}}</textarea></td> </tr> <tr><td><label for="submit-track">Track:</label></td> <td> <select id="submit-track" name="track"> {{#each tracks}} <option {{#ifEqual ../paper.track this}} selected="selected" {{/ifEqual}} >{{this}}</option> {{/each}} </select> </td></tr> <tr><td>&nbsp;</td> <td><input class="submit-talk" type="submit" value="Submit" /></td> </tr> </table> </form>
Add labels to submission page.
gnome: Add labels to submission page.
Handlebars
mit
benzea/regcfp,thanostx/regcfp,thanostx/regcfp,benzea/regcfp,benzea/regcfp,thanostx/regcfp
531f1a2d265d07f97296a0e18359c0cf5584ce16
partials/loop.hbs
partials/loop.hbs
{{! This is the post loop - each post will be output using this markup }} {{#foreach posts}} <article class="{{post_class}}"> <header> <h1><a href="{{url}}">{{title}}</a></h1> </header> <div class="meta"> <time datetime="{{date format='YYYY-MM-DD'}}">{{date format="MMMM DD, YYYY"}}</time> &nbsp;&bull;&nbsp; <span class="tags">{{tags}}</span> </div> <div class="text"> <p>{{excerpt words="45"}}</p> <br/> <a href="{{url}}" class="readmore">Continue Reading</a> </div> </article> {{/foreach}} {{! Previous/next page links - displayed on every page }} {{pagination}}
{{! This is the post loop - each post will be output using this markup }} {{#foreach posts}} <article class="{{post_class}}"> <header> <h1><a href="{{url}}">{{title}}</a></h1> </header> <div class="meta"> <time datetime="{{date format='YYYY-MM-DD'}}">{{date format="MMMM DD, YYYY"}}</time> &nbsp;&bull;&nbsp; <span class="tags">{{tags}}</span> &nbsp;&bull;&nbsp; <span class="count" id="js-reading-time"></span> </div> <div class="text"> <p>{{excerpt words="45"}}</p> <br/> <a href="{{url}}" class="readmore">Continue Reading</a> </div> </article> {{/foreach}} {{! Previous/next page links - displayed on every page }} {{pagination}}
Add Reading time to Loop
Add Reading time to Loop
Handlebars
mit
arranf/Roon
171404452424ed93287cb4567537a06fa68475c9
partials/loop.hbs
partials/loop.hbs
{{! Previous/next page links - only displayed on page 2+ }} <div class="extra-pagination inner"> {{pagination}} </div> {{! This is the post loop - each post will be output using this markup }} {{#foreach posts}} <article class="{{post_class}}"> <header class="post-header"> <h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2> </header> <section class="post-excerpt"> <p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">&raquo;</a></p> </section> <footer class="post-meta"> {{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="Author image" nopin="nopin" />{{/if}} {{author}} <span>on</span> {{#each tags}} <a class="tag" href="/tag/{{ slug }}"> <span class="label label-primary">{{ name }}</span> </a> {{/each}} <time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> </footer> </article> {{/foreach}} {{! Previous/next page links - displayed on every page }} {{pagination}}
{{! Previous/next page links - only displayed on page 2+ }} <div class="extra-pagination inner"> {{pagination}} </div> {{! This is the post loop - each post will be output using this markup }} {{#foreach posts}} <article class="{{post_class}}"> <header class="post-header"> <h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2> </header> <section class="post-excerpt"> <p>{{excerpt words="50"}} <a class="read-more" href="{{url}}">&raquo;</a></p> </section> <footer class="post-meta"> {{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="Author image" nopin="nopin" />{{/if}} {{author}} <span>on</span> {{#each tags}} <a class="tag" href="/tag/{{ slug }}"> <span class="label label-primary">{{ name }}</span> </a> {{/each}} <time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> </footer> </article> {{/foreach}} {{! Previous/next page links - displayed on every page }} {{pagination}}
Change number of words shown on home page to 50
Change number of words shown on home page to 50
Handlebars
mit
tandrewnichols/dullahan,tandrewnichols/dullahan,tandrewnichols/casper-dev,tandrewnichols/casper-dev
047c393d7e66445de775ff596c51f77f6d531a56
partials/loop.hbs
partials/loop.hbs
{{! This is the post loop - each post will be output using this markup }} {{#foreach posts}} <article class="{{post_class}}"> <header> <h2><a href="{{url}}">{{{title}}}</a></h2> </header> <section> <p>{{excerpt words="26"}} <a href="{{url}}">&raquo;</a></p> </section> <footer> {{#if author.image}}<img src="{{author.image}}" alt="{{author.name}}" nopin="nopin">{{/if}} {{author}} {{tags prefix=" on "}} <time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> </footer> </article> {{/foreach}} {{! Previous/next page links }} {{pagination}}
{{! This is the post loop - each post will be output using this markup }} {{#foreach posts}} <article class="{{post_class}}"> <header> <h2><a href="{{url}}">{{{title}}}</a></h2> </header> <section> <p>{{excerpt words="26"}} <a href="{{url}}">&raquo;</a></p> </section> <footer> {{#if author.image}}<img src="{{author.image}}" alt="{{author.name}}">{{/if}} {{author}} {{tags prefix=" on "}} <time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> </footer> </article> {{/foreach}} {{! Previous/next page links }} {{pagination}}
Fix identation & Delete class
Fix identation & Delete class
Handlebars
mit
jameskolce/Axiom
64ec7e236dd7e0691be6dbfb9bb6fcd815a43117
static/templates/settings/auth-methods-settings-admin.handlebars
static/templates/settings/auth-methods-settings-admin.handlebars
<div id="organization-settings" class="settings-section"> <div class="settings-section-title"><i class="icon-vector-lock settings-section-icon"></i> {{t "Authentication methods" }}</div> <form class="form-horizontal admin-realm-form"> <div class="alert" id="admin-realm-authentication-methods-status"></div> <div class="admin-table-wrapper"> <p>{{#tr this}}Configure the authentication methods for the __domain__ organization.{{/tr}}</p> <table class="table table-condensed table-striped"> <tbody id="admin_auth_methods_table" class=" admin_auth_methods_table"> <th>{{t "Method" }}</th> <th>{{t "Enabled" }}</th> </tbody> </table> </div> <div id="admin_page_auth_methods_loading_indicator"></div> <div class="input-group"> <div class="organization-submission"> <input type="submit" class="button" value="{{t 'Save changes' }}" /> </div> </div> </form> </div>
<div id="organization-settings" class="settings-section" data-name="auth-methods"> <div class="settings-section-title"><i class="icon-vector-lock settings-section-icon"></i> {{t "Authentication methods" }}</div> <form class="form-horizontal admin-realm-form"> <div class="alert" id="admin-realm-authentication-methods-status"></div> <div class="admin-table-wrapper"> <p>{{#tr this}}Configure the authentication methods for the __domain__ organization.{{/tr}}</p> <table class="table table-condensed table-striped"> <tbody id="admin_auth_methods_table" class=" admin_auth_methods_table"> <th>{{t "Method" }}</th> <th>{{t "Enabled" }}</th> </tbody> </table> </div> <div id="admin_page_auth_methods_loading_indicator"></div> <div class="input-group"> <div class="organization-submission"> <input type="submit" class="button" value="{{t 'Save changes' }}" /> </div> </div> </form> </div>
Add missing data-name for auth methods template.
settings: Add missing data-name for auth methods template.
Handlebars
apache-2.0
aakash-cr7/zulip,rht/zulip,souravbadami/zulip,vaidap/zulip,andersk/zulip,jrowan/zulip,vaidap/zulip,jphilipsen05/zulip,j831/zulip,dawran6/zulip,Galexrt/zulip,tommyip/zulip,showell/zulip,jrowan/zulip,rishig/zulip,SmartPeople/zulip,timabbott/zulip,souravbadami/zulip,SmartPeople/zulip,amanharitsh123/zulip,christi3k/zulip,brainwane/zulip,christi3k/zulip,rht/zulip,tommyip/zulip,ryanbackman/zulip,brainwane/zulip,sonali0901/zulip,hackerkid/zulip,dhcrzf/zulip,punchagan/zulip,jackrzhang/zulip,tommyip/zulip,j831/zulip,rht/zulip,eeshangarg/zulip,susansls/zulip,dattatreya303/zulip,Galexrt/zulip,dattatreya303/zulip,JPJPJPOPOP/zulip,punchagan/zulip,amanharitsh123/zulip,JPJPJPOPOP/zulip,verma-varsha/zulip,eeshangarg/zulip,blaze225/zulip,j831/zulip,vabs22/zulip,synicalsyntax/zulip,Galexrt/zulip,rishig/zulip,timabbott/zulip,sonali0901/zulip,brockwhittaker/zulip,jrowan/zulip,showell/zulip,zulip/zulip,j831/zulip,souravbadami/zulip,dawran6/zulip,zulip/zulip,rishig/zulip,souravbadami/zulip,christi3k/zulip,andersk/zulip,PhilSk/zulip,verma-varsha/zulip,mahim97/zulip,synicalsyntax/zulip,rht/zulip,jrowan/zulip,ryanbackman/zulip,PhilSk/zulip,brainwane/zulip,vabs22/zulip,tommyip/zulip,hackerkid/zulip,sonali0901/zulip,jainayush975/zulip,blaze225/zulip,j831/zulip,rishig/zulip,jphilipsen05/zulip,sonali0901/zulip,showell/zulip,brockwhittaker/zulip,punchagan/zulip,PhilSk/zulip,mahim97/zulip,susansls/zulip,synicalsyntax/zulip,PhilSk/zulip,synicalsyntax/zulip,blaze225/zulip,susansls/zulip,blaze225/zulip,hackerkid/zulip,andersk/zulip,dattatreya303/zulip,jackrzhang/zulip,SmartPeople/zulip,sonali0901/zulip,amanharitsh123/zulip,vaidap/zulip,samatdav/zulip,sonali0901/zulip,brainwane/zulip,samatdav/zulip,Galexrt/zulip,dhcrzf/zulip,dawran6/zulip,timabbott/zulip,zulip/zulip,mahim97/zulip,dattatreya303/zulip,souravbadami/zulip,kou/zulip,jainayush975/zulip,jackrzhang/zulip,amanharitsh123/zulip,susansls/zulip,verma-varsha/zulip,brockwhittaker/zulip,mahim97/zulip,jackrzhang/zulip,showell/zulip,rishig/zulip,punchagan/zulip,vaidap/zulip,punchagan/zulip,eeshangarg/zulip,dawran6/zulip,SmartPeople/zulip,kou/zulip,JPJPJPOPOP/zulip,jackrzhang/zulip,tommyip/zulip,synicalsyntax/zulip,Galexrt/zulip,jainayush975/zulip,verma-varsha/zulip,dhcrzf/zulip,shubhamdhama/zulip,dhcrzf/zulip,rht/zulip,vabs22/zulip,samatdav/zulip,andersk/zulip,jrowan/zulip,samatdav/zulip,rht/zulip,synicalsyntax/zulip,amanharitsh123/zulip,verma-varsha/zulip,amanharitsh123/zulip,Galexrt/zulip,vabs22/zulip,vabs22/zulip,susansls/zulip,rht/zulip,JPJPJPOPOP/zulip,kou/zulip,jphilipsen05/zulip,mahim97/zulip,j831/zulip,shubhamdhama/zulip,andersk/zulip,christi3k/zulip,shubhamdhama/zulip,blaze225/zulip,jrowan/zulip,hackerkid/zulip,verma-varsha/zulip,tommyip/zulip,blaze225/zulip,eeshangarg/zulip,ryanbackman/zulip,brainwane/zulip,dawran6/zulip,brainwane/zulip,aakash-cr7/zulip,vabs22/zulip,SmartPeople/zulip,kou/zulip,jphilipsen05/zulip,PhilSk/zulip,jackrzhang/zulip,hackerkid/zulip,timabbott/zulip,zulip/zulip,eeshangarg/zulip,jphilipsen05/zulip,timabbott/zulip,jainayush975/zulip,showell/zulip,jainayush975/zulip,jainayush975/zulip,showell/zulip,vaidap/zulip,timabbott/zulip,kou/zulip,timabbott/zulip,shubhamdhama/zulip,brockwhittaker/zulip,souravbadami/zulip,aakash-cr7/zulip,ryanbackman/zulip,aakash-cr7/zulip,brockwhittaker/zulip,ryanbackman/zulip,PhilSk/zulip,mahim97/zulip,jphilipsen05/zulip,rishig/zulip,dhcrzf/zulip,hackerkid/zulip,zulip/zulip,brainwane/zulip,kou/zulip,zulip/zulip,eeshangarg/zulip,Galexrt/zulip,dhcrzf/zulip,shubhamdhama/zulip,synicalsyntax/zulip,shubhamdhama/zulip,andersk/zulip,jackrzhang/zulip,JPJPJPOPOP/zulip,susansls/zulip,showell/zulip,punchagan/zulip,zulip/zulip,kou/zulip,shubhamdhama/zulip,aakash-cr7/zulip,dattatreya303/zulip,rishig/zulip,christi3k/zulip,vaidap/zulip,ryanbackman/zulip,christi3k/zulip,dattatreya303/zulip,samatdav/zulip,aakash-cr7/zulip,brockwhittaker/zulip,dawran6/zulip,hackerkid/zulip,dhcrzf/zulip,SmartPeople/zulip,andersk/zulip,tommyip/zulip,JPJPJPOPOP/zulip,samatdav/zulip,punchagan/zulip,eeshangarg/zulip
711aeb9504fb8dd4249165c4c17e130b3053525c
scripts/templates/dashboardEvents.handlebars
scripts/templates/dashboardEvents.handlebars
<div class="portlet span4 events"> <div class="header">Events</div> <div class="portlet-content"> <table class="table table-bordered"> <thead> <tr> <th class="column-small"></th> <th>Event</th> </tr> </thead> <tbody> {{#each model}} <tr> <td class="column-small"> {{#view App.TooltipView titleBinding="message"}} {{#if done}} {{{healthIcon status}}} {{else}} <i class="icon-spinner icon-spin icon-large fixed-width"></i> {{/if}} {{/view}} </td> <td> {{capitalize name}} <div class="row-fluid"> <div class="span6 nowrap ellipsis"> <small> {{#if node}}{{#link-to "nodesNode" node}}{{node.name}}{{/link-to}}{{/if}} {{#if vm}}{{#link-to "vmsVm" vm}}{{vm.name}}{{/link-to}}{{/if}} </small> </div> <div class="span6 align-right"><small>{{timestamp lastUpdate}}</small></div> </div> </td> </tr> {{else}} <tr> <td class="column-small"></td> <td>No events</td> </tr> {{/each}} </tbody> </table> </div> </div>
<div class="portlet span4 events"> <div class="header">Events</div> <div class="portlet-content"> <table class="table table-bordered"> <thead> <tr> <th class="column-small"></th> <th>Event</th> </tr> </thead> <tbody> {{#each model}} <tr> <td class="column-small"> {{#view App.TooltipView titleBinding="message"}} {{#if done}} {{{healthIcon status}}} {{else}} <i class="icon-spinner icon-spin icon-large fixed-width"></i> {{/if}} {{/view}} </td> <td> {{message}} <div class="row-fluid"> <div class="span6 nowrap ellipsis"> <small> {{#if node}}{{#link-to "nodesNode" node}}{{node.name}}{{/link-to}}{{/if}} {{#if vm}}{{#link-to "vmsVm" vm}}{{vm.name}}{{/link-to}}{{/if}} </small> </div> <div class="span6 align-right"><small>{{timestamp lastUpdate}}</small></div> </div> </td> </tr> {{else}} <tr> <td class="column-small"></td> <td>No events</td> </tr> {{/each}} </tbody> </table> </div> </div>
Use action message in event portlet
Use action message in event portlet
Handlebars
apache-2.0
vine77/saa-ui,vine77/saa-ui,vine77/saa-ui
905ab0f82afecd1e2afcb16bcbb359b0573fe1cb
app/assets/javascripts/templates/overlays/new_adhoc_task_overlay.hbs
app/assets/javascripts/templates/overlays/new_adhoc_task_overlay.hbs
<div class="form-group"> {{input id="task_title" value=task.title placeholder="Type a short card title here"}} </div> <div class="form-group"> <label for="task_assignee_id">Assign this task to:</label> {{chosen content=paper.assignees optionLabelPath="content.fullName" optionValuePath="content" value=task.assignee prompt="Assign this task to"}} </div> <div class="form-group"> {{textarea id="task_body" value=task.body placeholder="Provide some details here"}} </div>
<div class="form-group"> {{input id="task_title" value=model.title placeholder="Type a short card title here"}} </div> <div class="form-group"> <label for="task_assignee_id">Assign this task to:</label> {{chosen content=model.paper.assignees optionLabelPath="content.fullName" optionValuePath="content" value=model.assignee prompt="Assign this task to"}} </div> <div class="form-group"> {{textarea id="task_body" value=model.body placeholder="Provide some details here"}} </div>
Fix template to use model instead of task
Fix template to use model instead of task
Handlebars
mit
johan--/tahi,johan--/tahi,johan--/tahi,johan--/tahi
970de2ef9c99db22618a31250c408a4ed8c483ab
app/templates/home/settings.hbs
app/templates/home/settings.hbs
<section class="settings-section"> <div class="settings-card mdl-card mdl-shadow--2dp"> <div class="mdl-card__title mdl-card--expand"> <h2 class="mdl-card__title-text">Settings</h2> </div> <div class="mdl-card__supporting-text"> <p>Change your settings</p> <ul class="st--list-unstyled user-settings"> {{user-setting setting=userName class="settings-item"}} {{user-setting setting=currency class="settings-item"}} </ul> </div> <div class="mdl-card__actions mdl-card--border text-right"> {{#link-to 'home' class="mdl-button mdl-button--colored mdl-js-button" id="close-settings-btn"}} close {{/link-to}} </div> </div> </section>
<section class="settings-section"> <div class="settings-card mdl-card mdl-shadow--2dp"> <div class="mdl-card__title mdl-card--expand"> <h2 class="mdl-card__title-text">Settings</h2> </div> <div class="mdl-card__supporting-text"> <p>Change your settings</p> <ul class="st--list-unstyled user-settings"> {{user-setting setting=userName class="settings-item" action="updateSetting"}} {{user-setting setting=currency class="settings-item" action="updateSetting"}} </ul> </div> <div class="mdl-card__actions mdl-card--border text-right"> {{#link-to 'home' class="mdl-button mdl-button--colored mdl-js-button" id="close-settings-btn"}} close {{/link-to}} </div> </div> </section>
Add action markup in settins page for user-setting component
refactor: Add action markup in settins page for user-setting component
Handlebars
mit
pe1te3son/spendings-tracker,pe1te3son/spendings-tracker
2dd3ae3c8353d492b5c7c1e936a91b4d258d0eb9
client/app/templates/application.hbs
client/app/templates/application.hbs
{{#ui-sticky class="ui attached stackable menu" position="fixed top"}} <div class="ui container"> {{#link-to 'index' class="item"}} <i class="home icon"></i> Hytteadmin {{/link-to}} {{#link-to 'cabins' class="item"}} <i class="list layout icon"></i> Hytter {{/link-to}} {{#link-to 'session.logout' class="item"}} <i class="list layout icon"></i> Logg ut {{/link-to}} <div class="right menu"> {{outlet 'toolbar'}} </div> </div> {{/ui-sticky}} <div class="ui container"> {{outlet}} {{outlet 'editor'}} {{outlet 'cabins'}} </div>
{{#ui-sticky class="ui attached stackable menu" position="fixed top"}} <div class="ui container"> {{#link-to 'cabins' class="item"}} <i class="home icon"></i> Hytter {{/link-to}} {{#link-to 'session.logout' class="item"}} <i class="list layout icon"></i> Logg ut {{/link-to}} <div class="right menu"> {{outlet 'toolbar'}} </div> </div> {{/ui-sticky}} <div class="ui container"> {{outlet}} {{outlet 'editor'}} {{outlet 'cabins'}} </div>
Remove hytteadmin index link, as cabins index is default route
Remove hytteadmin index link, as cabins index is default route
Handlebars
mit
Turistforeningen/Hytteadmin,Turistforeningen/Hytteadmin
ff75f2a85cc321f83b3762984ccad02170776dcb
blueprints/flexberry-edit-form/files/__root__/templates/__name__.hbs
blueprints/flexberry-edit-form/files/__root__/templates/__name__.hbs
<h3 class="ui header">{{title}}</h3> {{#if errorMessages}} {{#each errorMessages as |currentError|}} {{ui-message type='error' closeable=true visible=true title='Error occurred' message=currentError }} {{/each}} {{/if}} <form class="ui form flexberry-vertical-form" role="form"> <div class="field"> <div class="flexberry-edit-panel"> {{#unless readonly}} <button type="submit" class="ui positive button" {{action 'save'}}> {{t "edit-form.save-button-text"}} </button> {{#unless model.isNew}} <button type="submit" class="ui negative button" {{action 'delete'}}> {{t "edit-form.delete-button-text"}} </button> {{/unless}} {{/unless}} <button type="submit" class="ui button" {{action 'close'}}> {{t "edit-form.close-button-text"}} </button> </div> </div> <%=flexberryComponents%> </form>
<h3 class="ui header">{{title}}</h3> {{#if errorMessages}} {{#each errorMessages as |currentError|}} {{ui-message type='error' closeable=true visible=true title='Error occurred' message=currentError }} {{/each}} {{/if}} <form class="ui form flexberry-vertical-form" role="form"> <div class="field"> <div class="flexberry-edit-panel"> {{#unless readonly}} <button type="submit" class="ui positive button" {{action 'save'}}> {{t "forms.edit-form.save-button-text"}} </button> {{#unless model.isNew}} <button type="submit" class="ui negative button" {{action 'delete'}}> {{t "forms.edit-form.delete-button-text"}} </button> {{/unless}} {{/unless}} <button type="submit" class="ui button" {{action 'close'}}> {{t "forms.edit-form.close-button-text"}} </button> </div> </div> <%=flexberryComponents%> </form>
Fix edit-form template for generator
Fix edit-form template for generator tfs #106318
Handlebars
mit
Flexberry/ember-flexberry,Flexberry/ember-flexberry,Flexberry/ember-flexberry,Flexberry/ember-flexberry