Also update version number on project page
I really should automate this.
[merge addon] Add highlightDifferences option and method
Provides new option (highlightDifferences) and method highlightDifferences(bool) to the MergeView plugin. If true (or undefined) the original behaviour is maintained, which is to show the differences (line highlighting and gutter graphics), if false then the changes will not be shown. Calling the method causes the visual change to occur 'immediately' Signed-off-by: ciaranj <ciaranj@gmail.com>
[project page] Set border: 0 for logo
Woah, IE still defaults to a border around images in links.
Use zero-width space in context-menu select-all hack
To prevent the mouse click from landing outside of the selected text, which broke copy in IE. Closes #1764
Remove outdated note from LICENSE
Subdirectories no longer contain separate LICENSE files. Delete the note to them from the top level LICENSE.
Remove redundant line in AUTHORS
Removed the redundant "List of contributors..." line
[merge addon] Shows differences when the non-edit pane is updated
Previous behaviour was to only update the displayed differences if the edit pane was modified. There exists use-cases such that the differences should be updated when any of the panes change. I don't expect this to introduce any performance regressions due to the existing debounce code within the update function. Signed-off-by: ciaranj <ciaranj@gmail.com>
Allow linter to run on windows
Node provides some cross-platform utility methods to enable safe path traversal. This change merely swaps out a hardcoded '/' (unix path separator) to use one of these methods. An alternative strategy would be to use the constant 'path.sep' but this felt 'cleaner'. Signed-off-by: ciaranj <ciaranj@gmail.com>
Main CSS file: Clean-up and fix lint warnings
Use 0 instead of 0px, clean-up two line breaks, to fix lint warning; Three empty CSS blocks could also be removed.
Signed-off-by: Chris Granger <ibdknox@gmail.com>
Demo was incorrectly named as showing 'Highlighter', fixed to 'Selection'
I have created this simple css autocomplete/hint that uses data from the css mode. Autocomplete works for both properties and values - but it does not filter the values by property. Better than nothing for now.
Better lint icons and in fewer bytes
Original error & warning icons had jagged edges due to being GIFs This made them look quite poor/low quality on dark BG'd themes So, new, better looking icons added which have been run thru TinyPNG for compression Result is fewer bytes than original and they look good on dark BG's too