cms/app-client/app/controllers/second-page.js
author nowmad@23.1.168.192.in-addr.arpa
Fri, 06 Nov 2015 16:48:03 +0100
changeset 8 f95603fd2e18
parent 5 d4b3da0dadc9
child 12 cb28c4bda940
permissions -rw-r--r--
add baseStatic to APP env
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     1
import Ember from 'ember';
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     2
import config from '../config/environment';
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     3
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     4
console.log(config);
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     5
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     6
export default Ember.Controller.extend({
8
f95603fd2e18 add baseStatic to APP env
nowmad@23.1.168.192.in-addr.arpa
parents: 5
diff changeset
     7
  logoUrl: config.APP.baseStatic + "assets/images/logo.png"
5
d4b3da0dadc9 init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     8
});