Skip to content

Double escaping single quotes #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 26 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b7b0b1a
Double escaping single quotes
Jun 23, 2016
a823e97
Material upgrades
Jun 28, 2016
c550074
md-auto-complete work, created new sf-changed-auto-complete to watch …
brianpkelley Aug 1, 2016
02ad436
spacing
brianpkelley Aug 1, 2016
7ef7261
Untrack dist files
brianpkelley Aug 1, 2016
0700380
Merge branch 'develop' of https://github.com/json-schema-form/angular…
brianpkelley Aug 1, 2016
2ddee96
removing mdInputBuilder as material-class.js now implements the same …
brianpkelley Aug 1, 2016
e0991ba
Formatting and layout fixes
brianpkelley Sep 14, 2016
c910b5e
Merge branch 'develop' of github.com:betterMDS/angular-schema-form-ma…
brianpkelley Sep 29, 2016
b948805
Resolve conflicts
brianpkelley Sep 29, 2016
53c8a65
Merge pull request #2 from betterMDS/pr/1
brianpkelley Sep 29, 2016
c8ed336
Upstream Changes and DIST files
brianpkelley Sep 29, 2016
e6abd07
web pack build... hopefully
brianpkelley Sep 29, 2016
947a953
more webpack
brianpkelley Sep 29, 2016
46087a9
more webpack...
brianpkelley Sep 30, 2016
3fe8315
Autocomplete dropdown issues
brianpkelley Sep 30, 2016
c9e8f9b
Autocomplete dropdown issues
brianpkelley Sep 30, 2016
114e772
Dropdown readonly
brianpkelley Nov 1, 2016
5c09832
proget
brianpkelley Nov 1, 2016
31b3863
select disable
brianpkelley Nov 1, 2016
50de0da
Fixing md-card flex issues
brianpkelley Jan 12, 2017
8876a35
Updating
brianpkelley Mar 16, 2018
5cfa38b
Misc Updates
brianpkelley May 25, 2018
0cf7498
So... there's like two devs working on this stuff, so i should like, …
brianpkelley Jul 31, 2018
2314256
bump
brianpkelley Jul 31, 2018
15c2ef4
updates
brianpkelley Apr 13, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"directory": "bower_components",
"registry": {
"search": [
"https://bettervideo:[email protected]/bower/bower",
"https://bower.herokuapp.com"
],
"register": "https://bettervideo:[email protected]/bower/bower",
"publish": "https://bettervideo:[email protected]/bower/bower"
},
"strict-ssl": false
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Angular Material Decorator

For https://github.com/json-schema-form/angular-schema-form


Work In Progress
----------------
Angular Material has reached 1.0.0 however I do not feel it is remotely stable yet, this decorator is progressing very cautiously until that project hits a more stable milestone. That said, I have made an early alpha available and will continue to release alpha releases as I add new features, these **are not production quality** as the name alpha implies.
Expand Down
8 changes: 6 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-schema-form-material",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"authors": [
"Marcel Bennett <[email protected]>"
],
Expand All @@ -22,7 +22,7 @@
"tests"
],
"dependencies": {
"angular-schema-form": ">=0.8.13"
"angular-schema-form": "git://github.com/betterMDS/angular-schema-form.git#feature/webpack-babel"
},
"devDependencies": {
"angular": "1.5.5",
Expand All @@ -32,5 +32,9 @@
"angular-messages": "1.5.5",
"angular-ui-ace": "~0.2.3",
"moment": "~2.10.6"
},
"resolutions": {
"angular": "1.5.8",
"angular-schema-form": "feature/webpack-babel"
}
}
801 changes: 496 additions & 305 deletions dist/angular-schema-form-material.js

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions dist/angular-schema-form-material.min.js

Large diffs are not rendered by default.

27 changes: 14 additions & 13 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,21 @@ var gulp = require('gulp'),
uglify = require('gulp-uglify'),
jscs = require('gulp-jscs');

gulp.task('build', function() {
gulp.task('build', ['templates','js']);
gulp.task('js', function() {
var stream = streamqueue({ objectMode: true });
stream.queue(
gulp.src('./src/**/*.html')
.pipe(minifyHtml({
empty: true,
spare: true,
quotes: true
}))
.pipe(templateCache({
module: 'schemaForm',
root: 'decorators/material/'
}))
);
// stream.queue(
// gulp.src('./src/**/*.html')
// .pipe(minifyHtml({
// empty: true,
// spare: true,
// quotes: true
// }))
// .pipe(templateCache({
// module: 'schemaForm',
// root: 'decorators/material/'
// }))
// );
stream.queue(gulp.src('./src/**/*.js'));

stream.done()
Expand Down
244 changes: 175 additions & 69 deletions material-decorator.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion material-decorator.min.js

Large diffs are not rendered by default.

Loading