Sha256: f4d704aa802655208348ff703cb0a3817a13bf066a9fb23031480552eed98f28

Contents?: true

Size: 1.73 KB

Versions: 1

Compression:

Stored size: 1.73 KB

Contents

I"ã(function() {
  angular.module("Editor").controller("EditorCtrl", [
    "$scope", "Restangular", function($scope, Restangular) {
      console.log('EditorCtrl');
      $scope.layouts = [];
      $scope.pages = [];
      $scope.snippets = [];
      $scope.options = {};
      $scope.summernotes = {};
      Restangular.one("summernotes").get().then((function(data) {
        return $scope.summernotes = data;
      }), function(error) {
        return console.log(error);
      });
      Restangular.one("layouts").get().then((function(data) {
        return $scope.layouts = [
          {
            id: null,
            is_dir: true,
            title: 'layouts',
            items: data,
            root: true
          }
        ];
      }), function(error) {
        return console.log(error);
      });
      Restangular.one("pages").get().then((function(data) {
        return $scope.pages = [
          {
            id: null,
            is_dir: true,
            title: 'pages',
            items: data,
            root: true
          }
        ];
      }), function(error) {
        return console.log(error);
      });
      Restangular.one("snippets").get().then((function(data) {
        $scope.snippets = [
          {
            id: null,
            is_dir: true,
            title: 'snippets',
            items: data,
            root: true
          }
        ];
        return console.log($scope.snippets);
      }), function(error) {
        return console.log(error);
      });
      return $scope.onSave = function() {
        return $scope.summernotes.put().then((function(data) {
          return console.log(data);
        }), function(error) {
          return console.log(error);
        });
      };
    }
  ]);

}).call(this);
:ET

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sedge_cms-0.0.1 test/dummy/tmp/cache/assets/development/sprockets/v3.0/VPokpiM-cYsjwq7H1GAlElo7u9MJ-drxWuUhQJhRmE4.cache