Sha256: 6a51ec86affe6676859dc847678a770a806106d200b9f18bb7dd15837610b8a2
Contents?: true
Size: 1.76 KB
Versions: 1
Compression:
Stored size: 1.76 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) { console.log(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/1erW3JK3v8Mz2_ZaWHOw87YQcmP35qIb4gJfAdpw-Vo.cache |