Matt Enlow
f518782c3c
Merge pull request #4269 from javorszky/iss4189
...
Abstracting away the deprecatedItems
2014-10-13 09:28:14 -06:00
Matt Enlow
1d3cd53ed2
Merge pull request #4271 from felixrieseberg/iss4211-emailslug
...
Accept Invitation: Generate Slug from Name
2014-10-13 09:14:55 -06:00
Felix Rieseberg
7bb38f8c7b
Accept Invitation: Generate Slug from Name
...
No issue, but ref #4211
2014-10-13 08:35:08 -04:00
John O'Nolan
92191234fb
Merge pull request #4268 from PaulAdamDavis/fix-4208
...
Use flexbox for post settings cog & publish button
2014-10-13 12:08:08 +02:00
Jason Williams
980fa6a311
Merge pull request #4257 from ErisDS/codestyle
...
Custom showdown extensions should be linted
2014-10-12 18:10:52 -05:00
Gabor Javorszky
938b098329
Abstracting away the deprecatedItems
...
Closes #4189
* moved `deprecatedItems` from within the function to the default config object
* addes tests
2014-10-12 23:04:39 +01:00
Paul Adam Davis
28d1273c96
Use flexbox for post settings cog & publish button
...
Closes #4208
- Removes `min-width` & `max-width` from `.publish-bar-actions`
- Uses flexbox to correctly handle dynamic size (due to font size and text content of button)
2014-10-12 19:31:14 +01:00
Hannah Wolfe
00ef9cfcb1
Custom showdown extensions should be linted
...
ref #4243
- Removing /lib/ from the list of things which aren't linted, as this is
all custom code
- Fixing up the two files to pass linting, erring on the side of caution
with disabling regexp rules vs fixing regexes!
2014-10-12 15:28:19 +02:00
Hannah Wolfe
ce46248e79
Merge pull request #4255 from IanMitchell/navbar-title-change
...
Updated admin navbar blog link title
2014-10-12 15:03:46 +03:00
Hannah Wolfe
6d791c033d
Merge pull request #4244 from javorszky/iss4243
...
Added anonymous iife decl space rule to jscsrc
2014-10-12 12:46:27 +03:00
Hannah Wolfe
d18621a075
Merge pull request #4242 from cobbspur/meta
...
Adds Open Graph tags to ghost_head
2014-10-11 19:41:49 +03:00
Matt Enlow
87f8703dc6
Merge pull request #4265 from RaoHai/issue-4247
...
Change keyboard shortcut context
2014-10-10 13:07:02 -06:00
surgesoft
b5a29cdca5
Change keyboard shortcut context
...
closes #4247
- added scope to every shortcut, the scope of shortcut is default to
'default'
- add shortcut `enter` to modal which confirm the modal
- shortcut `enter` and `esc` now have scope 'modal'
- when lunch a modal, scope is switching to 'modal', and set back to
'default' when close
- shortcut `enter` now confirm the dialog without conflicting with route
shortcuts
2014-10-11 02:09:12 +08:00
John O'Nolan
d5e03ceaa1
Merge pull request #4249 from PaulAdamDavis/fix-signin-styles
...
Refactor auth form styles
2014-10-10 14:37:26 +02:00
Ian Mitchell
de216d4b99
Updated blog link title
...
The admin navbar title used to just be `/`. It now reads `Visit blog`,
in accordance with the nav label.
2014-10-08 20:57:10 -07:00
cobbspur
487297ff81
Added open graph tags for ghost head helper
...
issue #3900
- uses isPrivacyDisabled helper to see if useStructuredData has been disabled in config.js
- adds an array of promises to deal with asynchronous data
- resolves asynchronous data then adds open graph tags after canonical link
- featured image and tags are only added if present
- open graph tags only added on post and page
- adds unit test to check correct data is returned
- updates other unit tests to reflect changes
2014-10-08 15:57:49 +01:00
Paul Adam Davis
5330b5612d
Refactor auth form styles
...
Closes #4246
- Removed the input wrapper background colour
- Moved `:focus` styles to one element, so its not defined separate for each page
- Removed unnecessary MQ for body background colour (it changed nothing)
2014-10-07 21:49:58 +01:00
Gabor Javorszky
98ee7a4f5c
Added anonymous ifee function decl space rule to jscsrc
...
Closes #4243
2014-10-07 15:01:11 +01:00
Matt Enlow
58ec6e0ac9
Merge pull request #4163 from mattiascibien/issue-4144
...
Clean up hardcoded ghost paths
2014-10-06 09:01:26 -06:00
Mattias Cibien
f2b2cf2519
Clean up hardcoded ghost paths
...
closes #4144
- made contributors template use the `gh-path` helper
- Removing blogRoot from application.js
- made error image use the `gh-path` helper
2014-10-06 16:33:58 +02:00
Matt Enlow
ea0d500d1b
Merge pull request #4237 from ErisDS/nanoscroller
...
Moving nanoscroller to be managed by bower
2014-10-05 19:34:43 -06:00
Hannah Wolfe
efea8dc502
Moving nanoscroller to be managed by bower
2014-10-05 22:08:36 +01:00
Hannah Wolfe
79c3f51950
Merge pull request #4226 from jaswilli/issue-4225
...
Follow symlinks when resolving theme paths.
2014-10-04 19:46:56 +01:00
John O'Nolan
23ce68b3a1
Merge pull request #4187 from PaulAdamDavis/settings-fixes
...
Refactor settings & content wrappers
2014-10-04 14:36:48 +02:00
Jason Williams
38878b8da0
Merge pull request #4230 from novaugust/reset-signs-in
...
Reset password signs the user in
2014-10-03 16:44:43 -05:00
Matt Enlow
e27dd6f7df
Reset password signs the user in
...
Closes #4196
- Clear confidential info on leaving reset route
- Remove nested password access, because gross
- Also cleaned up some .then(f, h) to .then(f).catch(h) in setup controller
2014-10-03 15:22:20 -06:00
Paul Adam Davis
a4a3bcb2d8
Refactor settings and content wrappers to allow smooth overflows and properly show headers on mobile
...
Closes #4186 , Closes #4190 , Closes #4150
- Alters markup to allow for correct use of `-webkit-overflow-scrolling: touch;`
- Updates the debug page to use the same markup as the rest of the settings page
- Solve floating tag bar issue by making it absolute, not fixed
2014-10-03 18:54:18 +01:00
Jason Williams
696fbaaee4
Follow symlinks when resolving theme paths.
...
Closes #4225
- If a theme is symlinked in the themes directory, follow
the symlink so that the theme object is populated correctly.
- Only do the fallback loading of theme data in the validations
module if it doesn't exist in config.
2014-10-02 13:37:18 +00:00
Hannah Wolfe
27fe725357
Merge pull request #4086 from novaugust/gmail-shortcuts
...
Add Gmail-style shortcuts
2014-10-02 11:49:57 +01:00
Felix Rieseberg
0025f3d6de
Shorter user slugs (if possible)
...
Closes #4211
2014-10-01 23:27:21 +02:00
John O'Nolan
98feef0cf5
Merge pull request #4218 from PaulAdamDavis/fix-4199
...
Change avatars in user list back to cover
2014-10-01 15:52:48 +02:00
John O'Nolan
5b8658d519
Merge pull request #4193 from PaulAdamDavis/less-animations
...
Less Animations
2014-10-01 15:52:27 +02:00
John O'Nolan
319470ddd8
Merge pull request #4171 from PaulAdamDavis/tag-management
...
Tag Management UI Markup
2014-10-01 15:51:38 +02:00
John O'Nolan
d39b34db6b
Merge pull request #4073 from PaulAdamDavis/ux-improvs
...
UX Improvements
2014-10-01 15:50:53 +02:00
Paul Adam Davis
24a7c9f3ef
Prevent elastic scrolling on the whole page
2014-09-30 22:52:40 +01:00
Paul Adam Davis
7a291d2fcc
Webkit overflow scroll touch
2014-09-30 22:52:39 +01:00
Paul Adam Davis
32c27ceac9
Tag Management UI Markup
...
References #3926
Static markup for the Tag Management screen
2014-09-30 22:43:59 +01:00
John O'Nolan
12f92cd027
Merge pull request #4210 from JohnONolan/fix-copy
...
[WIP] Fixed email copy grammatical errors
2014-09-30 20:26:11 +02:00
John O'Nolan
1fb1a5e299
Merge pull request #4141 from PaulAdamDavis/fix-dropdown-flickering
...
Fix flickering dropdown animations
2014-09-30 20:22:08 +02:00
Paul Adam Davis
91c07e37bf
Change avatars in user list back to cover
...
Closes #4199
`background-size: 105%;` is a nono for square images. `background-size: cover;` is a better.
2014-09-30 17:22:21 +01:00
Paul Adam Davis
f6ec4c68fc
Make the PSM tabs transition only happen on larger screens
2014-09-30 11:03:21 +01:00
Paul Adam Davis
4e3de54dca
Remove sliding animation between content & list & post preview on mobile
...
Closes #3951
2014-09-30 11:02:42 +01:00
Paul Adam Davis
e5b45c8d76
Rename popovers to dropdowns
2014-09-30 10:48:21 +01:00
Paul Adam Davis
bf69c9cf83
Fix flickering popover transitions
...
Closes #4138
- Removed JS animation to close in favour of CSS animations
2014-09-30 10:48:21 +01:00
Hannah Wolfe
593d3b184b
Merge pull request #4203 from halfdan/2521-module-test
...
Implements Ghost module tests
2014-09-29 22:05:39 +01:00
Fabian Becker
40254adc92
Implements module tests
...
closes #2521
- Add new module tests
- Implements new `test-module` task to specifically run module tests
2014-09-29 22:33:09 +02:00
Hannah Wolfe
4e58198381
Merge pull request #4188 from halfdan/1891-move
...
Abstract the allowed file types out of API
2014-09-29 21:31:22 +01:00
Jason Williams
57d28ec427
Merge pull request #4202 from iBotPeaches/issue_4198
...
Sorts PSM authors alphabetically
2014-09-29 12:32:55 -05:00
Connor Tumbleson
3ffdd7e9ab
Sorts PSM authors alphabetically
...
fixes #4198
2014-09-29 12:17:26 -05:00
John O'Nolan
71f4b40b2e
Fixed email copy grammatical errors
2014-09-29 16:04:02 +02:00