mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
7 lines
332 B
JavaScript
7 lines
332 B
JavaScript
'use strict';
|
|
|
|
// list the social networks supported in the user's profiles
|
|
Application.Services.factory('SocialNetworks', [function () {
|
|
return ['facebook', 'twitter', 'google_plus', 'viadeo', 'linkedin', 'instagram', 'youtube', 'vimeo', 'dailymotion', 'github', 'echosciences', 'website', 'pinterest', 'lastfm', 'flickr'];
|
|
}]);
|