This website requires JavaScript.
Explore
Help
Sign In
darkhelm
/
notifications-admin
Watch
1
Star
0
Fork
0
You've already forked notifications-admin
mirror of
https://github.com/GSA/notifications-admin.git
synced
2026-02-05 19:03:30 -05:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
596da7016cfa073395ddc364742b41f9a53ee3a3
notifications-admin
/
app
/
assets
/
javascripts
/
main.js
4 lines
92 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Use EcmaScript 6, w/ transpiling for compatibility ES6 has some nice new features. Specifically relevant to this piece of work are: Arrow functions[1], whose `this` context is bound the value of `this` in the current scope and can’t be overidden. The code is cleaner as a result, and doesn’t need the addition of a bind polyfill for older browsers. Template strings[2], which are similar to triple-quoted multi line strings in Python. This means less fiddly and error-prone string concatenation. This commit adds Babel[3] to the Gulp pipeline. This transpiles Javascript written to the ES6 specification into code which is compatible with older browsers that don’t understand ES6 syntax. It also rewrites the gulpfile itself using some ES6 syntax, for the same reasons. 1. https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Functions/Arrow_functions 2. https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/template_strings 3. https://babeljs.io
2015-12-20 00:00:01 +00:00
$
(
(
)
=>
GOVUK
.
modules
.
start
(
)
)
;
Simplify template picker to be just radio buttons Includes making the selection buttons work properly
2016-01-13 17:42:01 +00:00
$
(
(
)
=>
new
GOVUK
.
SelectionButtons
(
'.block-label input'
)
)
;
Reference in New Issue
Copy Permalink