mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
17 lines
635 B
CoffeeScript
17 lines
635 B
CoffeeScript
angular.module("admin.enterprises")
|
|
.controller "permalinkCtrl", ($scope, PermalinkChecker) ->
|
|
$scope.pristinePermalink = $scope.Enterprise.permalink
|
|
$scope.availablility = ""
|
|
$scope.checking = false
|
|
|
|
$scope.$watch "Enterprise.permalink", (newValue, oldValue) ->
|
|
if newValue == $scope.pristinePermalink
|
|
$scope.availability = ""
|
|
else
|
|
$scope.checking = true
|
|
PermalinkChecker.check(newValue).then (data) ->
|
|
$scope.availability = 'Available'
|
|
$scope.checking = false
|
|
, (data) ->
|
|
$scope.availability = 'Unavailable'
|
|
$scope.checking = false |