Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
solr-frontend
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
f220646e
authored
2016-06-15 18:02:02 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Update to latest versions.
1 parent
9a076165
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
bower.json
src/scripts/solr/model/Facet.js
bower.json
View file @
f220646
...
...
@@ -15,9 +15,9 @@
],
"dependencies"
:
{
"jquery"
:
""
,
"backbone"
:
"
~1.1.2
"
,
"backbone"
:
""
,
"backbone-nested-models"
:
"git@gitlab.brainfood.com:brainfood/backbone-nested-models.git"
,
"underscore"
:
"
~1
"
,
"underscore"
:
""
,
"requirejs"
:
"~2.1.17"
}
}
...
...
src/scripts/solr/model/Facet.js
View file @
f220646
...
...
@@ -491,10 +491,6 @@ define(function(require) {
},
*/
});
var
ItemCollection
=
Backbone
.
Collection
.
extend
({
remove
:
function
()
{
}
});
var
Item
=
Facet
.
Item
=
Backbone
.
Model
.
extend
({
idAttribute
:
'key'
,
defaults
:
{
...
...
@@ -511,6 +507,11 @@ define(function(require) {
return
Item
.
__super__
.
initialize
.
apply
(
this
,
arguments
);
}
});
var
ItemCollection
=
Backbone
.
Collection
.
extend
({
model
:
Item
,
remove
:
function
()
{
}
});
return
Facet
;
});
...
...
Please
register
or
sign in
to post a comment