author | nowmad@nowmads-macbook-pro.local |
Wed, 20 Jan 2016 23:51:55 +0100 | |
changeset 92 | 3437f5191645 |
parent 84 | 36f84e8f1ad5 |
child 98 | 2e6bfce6f99c |
permissions | -rw-r--r-- |
46
b9afefcfe964
create carto route to try a query and render the carto compoenent in a specific outlet
nowmad@nowmads-macbook-pro.local
parents:
diff
changeset
|
1 |
import Ember from 'ember'; |
b9afefcfe964
create carto route to try a query and render the carto compoenent in a specific outlet
nowmad@nowmads-macbook-pro.local
parents:
diff
changeset
|
2 |
|
b9afefcfe964
create carto route to try a query and render the carto compoenent in a specific outlet
nowmad@nowmads-macbook-pro.local
parents:
diff
changeset
|
3 |
export default Ember.Route.extend({ |
b9afefcfe964
create carto route to try a query and render the carto compoenent in a specific outlet
nowmad@nowmads-macbook-pro.local
parents:
diff
changeset
|
4 |
renderTemplate() { |
b9afefcfe964
create carto route to try a query and render the carto compoenent in a specific outlet
nowmad@nowmads-macbook-pro.local
parents:
diff
changeset
|
5 |
this.render({ outlet: 'carto' }); |
84 | 6 |
}, |
7 |
actions: { |
|
8 |
queryParamsDidChange: function() { |
|
9 |
console.log("carto params"); |
|
10 |
}, |
|
46
b9afefcfe964
create carto route to try a query and render the carto compoenent in a specific outlet
nowmad@nowmads-macbook-pro.local
parents:
diff
changeset
|
11 |
} |
b9afefcfe964
create carto route to try a query and render the carto compoenent in a specific outlet
nowmad@nowmads-macbook-pro.local
parents:
diff
changeset
|
12 |
}); |