mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-23 06:43:45 +00:00
modal != modal instance
This commit is contained in:
parent
c777f498ad
commit
69a7a1508b
2 changed files with 1 additions and 3 deletions
|
@ -7,7 +7,6 @@ html(itemscope, itemtype='http://schema.org/Product')
|
||||||
// Stop superfish from loading
|
// Stop superfish from loading
|
||||||
window.similarproducts = true
|
window.similarproducts = true
|
||||||
style [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {display: none !important; display: none; }
|
style [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {display: none !important; display: none; }
|
||||||
style #groove-button { display:none;}
|
|
||||||
|
|
||||||
-if (typeof(gaExperiments) != "undefined")
|
-if (typeof(gaExperiments) != "undefined")
|
||||||
|!{gaExperiments}
|
|!{gaExperiments}
|
||||||
|
|
|
@ -10,7 +10,7 @@ define [
|
||||||
controller: "SupportModalController"
|
controller: "SupportModalController"
|
||||||
)
|
)
|
||||||
|
|
||||||
App.controller 'SupportModalController', ($scope, $modal) ->
|
App.controller 'SupportModalController', ($scope, $modalInstance) ->
|
||||||
$scope.form = {}
|
$scope.form = {}
|
||||||
$scope.sent = false
|
$scope.sent = false
|
||||||
$scope.sending = false
|
$scope.sending = false
|
||||||
|
@ -31,7 +31,6 @@ define [
|
||||||
$scope.sent = true
|
$scope.sent = true
|
||||||
$scope.$apply()
|
$scope.$apply()
|
||||||
|
|
||||||
|
|
||||||
$scope.close = () ->
|
$scope.close = () ->
|
||||||
$modalInstance.close()
|
$modalInstance.close()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue