window.SearchSpringInit = function() { var self = this; if (self.context.category && typeof self.context.category == 'string') { // Replace encoded category string with spaces var replacedCategory = self.context.category.replace(/\+/g, ' '); // Decode the category string so it resembles actual data var decodedCategory = decodeURIComponent(replacedCategory); // Now set the background filter self.context.backgroundFilters.hierarchy = decodedCategory; } // springboard generated variables var modules = {}; modules.enabled = true; // springboard generated variables for autocomplete/default modules['autocomplete'] = { input: '.searchspring-ac', spellCorrection: false, language: 'en', action: '', autoPosition: false, limit: 6 }; this.importer.include('autocomplete2', modules.autocomplete); this.on('afterSearch', function($scope) { angular.forEach($scope.facets, function(facet) { // Create different limits for different facet types // For palette and grid types, this makes sure boxes fill the last row var facetType = (facet.type == 'palette' || facet.type == 'grid') ? true : false; facet.limitCount = facetType ? 16 : 12; }); }); this.on('afterBootstrap', function($scope) { // Add loading div for an accurate fixed position var loadingID = 'searchspring-loading'; var loadingContainer = document.getElementById(loadingID); if (!loadingContainer && !$scope.moduleName) { angular.element(document.querySelector('body')).append('
'); } }); this.on('afterSearch', function($scope) { // Check if there is more than one page (for head title logic) $scope.pagination.multiplePages = true; if ($scope.pagination.totalResults <= $scope.pagination.perPage) { $scope.pagination.multiplePages = false; } // Set default image url $scope.results.defaultImage = '//cdn.searchspring.net/ajax_search/img/default_image.png'; angular.forEach($scope.results, function(result) { // If no thumbnail image, set default image if (!result.thumbnailImageUrl) { result.thumbnailImageUrl = $scope.results.defaultImage; } // Pre-load images and check for loading errors var ssResultsImage = new Image(); ssResultsImage.src = result.thumbnailImageUrl; // If image errors, load default image instead ssResultsImage.onerror = function() { result.thumbnailImageUrl = $scope.results.defaultImage; $scope.$evalAsync(); } }); }); // springboard generated variables for slideout/default modules['slideout'] = { width: 959 }; this.importer.include('slideout', modules.slideout); }; SearchSpring.Catalog.templates.promises.receive.resolve('');