X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=sdnr%2Fwireless-transport%2Fcode-Carbon-SR1%2Fapps%2Fdlux%2Fdlux-web%2Fsrc%2Fcommon%2Ftopbar%2Ftopbar.services.js;fp=sdnr%2Fwireless-transport%2Fcode-Carbon-SR1%2Fapps%2Fdlux%2Fdlux-web%2Fsrc%2Fcommon%2Ftopbar%2Ftopbar.services.js;h=0000000000000000000000000000000000000000;hb=1c1e7f98416875f3ee78af9103865c32f95a82a0;hp=6a6ba8854ca4f2ac16d9e27165404f3b82dea5f4;hpb=6a893bb0ae984d15076394d9225d4873ad953791;p=ccsdk%2Fapps.git diff --git a/sdnr/wireless-transport/code-Carbon-SR1/apps/dlux/dlux-web/src/common/topbar/topbar.services.js b/sdnr/wireless-transport/code-Carbon-SR1/apps/dlux/dlux-web/src/common/topbar/topbar.services.js deleted file mode 100644 index 6a6ba885..00000000 --- a/sdnr/wireless-transport/code-Carbon-SR1/apps/dlux/dlux-web/src/common/topbar/topbar.services.js +++ /dev/null @@ -1,103 +0,0 @@ -define(['common/topbar/topbar.module'], function(topbar) { - topbar.factory('taskFactory',function () { - var factory = {}; - factory.getTaskData = function () { - return { - count: 4, - latest: [ - { - title: "Software Update", - percentage: 65 - }, - { - title: "Hardware Upgrade" , - percentage: 35 , - progressBarClass: "progress-bar-danger" - }, - { - title: "Unit Testing" , - percentage: 15 , - progressBarClass: "progress-bar-warning" - }, - { - title: "Bug Fixes" , - percentage: 90 , - progressClass: "progress-striped active", - progressBarClass: "progress-bar-success" - } - ] - }; - - }; - return factory; - }); - - topbar.factory('messageFactory', function () { - var factory = {}; - factory.getMessageData = function () { - return { - count: 5, - latest: [ - { - name: "Alex", - img: "avatar.png", - time: "a moment ago", - summary: "Ciao sociis natoque penatibus et auctor ..." - }, - { - name: "Susan", - img: "avatar3.png", - time: "20 minutes ago", - summary: "Vestibulum id ligula porta felis euismod ..." - }, - { - name: "Bob", - img: "avatar4.png", - time: "3:15 pm", - summary: "Nullam quis risus eget urna mollis ornare ..." - } - ] - }; - }; - return factory; - }); - - topbar.factory('notifsFactory', function () { - var factory = {}; - factory.getNotifsData = function () { - return { - "count": 8, - "latest": [ - { - title: "New Comments", - icon: "icon-comment", - iconClass: "btn-pink", - badge: "+12", - badgeClass: "badge-info" - }, - { - title: "Bob just signed up as an editor ...", - icon: "icon-user", - iconClass: "btn-primary" - }, - { - title: "New Orders", - icon: "icon-shopping-cart", - iconClass: "btn-success", - badge: "+8", - badgeClass: "badge-success" - }, - { - title: "Followers", - icon: "icon-twitter", - iconClass: "btn-info", - badge: "+11", - badgeClass: "badge-info" - } - ] - }; - - }; - return factory; - }); -});