Angularise payment method provider UI

This commit is contained in:
Rob H
2014-07-04 17:20:58 +10:00
parent 55e29832e1
commit d6aae0050f
8 changed files with 68 additions and 39 deletions

View File

@@ -0,0 +1,2 @@
angular.module("ofn.admin").controller "ProvidersCtrl", ($scope, paymentMethod) ->
$scope.include_html = "/admin/payment_methods/#{paymentMethod.id}/show_provider_preferences?provider_type=#{paymentMethod.type}"

View File

@@ -0,0 +1,5 @@
angular.module("ofn.admin").directive "ofnFetchProviderPrefs", ($http) ->
link: (scope, element, attrs) ->
element.on "change blur", ->
scope.$apply ->
scope.include_html = "/admin/payment_methods/#{attrs.ofnFetchProviderPrefs}/show_provider_preferences?provider_type=#{element.val()}"